本文整理汇总了Java中org.bukkit.event.TestEvent类的典型用法代码示例。如果您正苦于以下问题:Java TestEvent类的具体用法?Java TestEvent怎么用?Java TestEvent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TestEvent类属于org.bukkit.event包,在下文中一共展示了TestEvent类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: testAsyncLocked
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testAsyncLocked() throws InterruptedException {
final Event event = new TestEvent(true);
Thread secondThread = new Thread(
new Runnable() {
public void run() {
try {
synchronized (pm) {
pm.callEvent(event);
}
} catch (Throwable ex) {
store.value = ex;
}
}
}
);
secondThread.start();
secondThread.join();
assertThat(store.value, is(instanceOf(IllegalStateException.class)));
assertThat(event.getEventName() + " cannot be triggered asynchronously from inside synchronized code.", is(((Throwable) store.value).getMessage()));
}
开发者ID:CyberdyneCC,项目名称:Thermos-Bukkit,代码行数:22,代码来源:PluginManagerTest.java
示例2: testAsyncUnlocked
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testAsyncUnlocked() throws InterruptedException {
final Event event = new TestEvent(true);
Thread secondThread = new Thread(
new Runnable() {
public void run() {
try {
pm.callEvent(event);
} catch (Throwable ex) {
store.value = ex;
}
}});
secondThread.start();
secondThread.join();
if (store.value != null) {
throw new RuntimeException((Throwable) store.value);
}
}
开发者ID:CyberdyneCC,项目名称:Thermos-Bukkit,代码行数:19,代码来源:PluginManagerTest.java
示例3: testSyncUnlocked
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testSyncUnlocked() throws InterruptedException {
final Event event = new TestEvent(false);
Thread secondThread = new Thread(
new Runnable() {
public void run() {
try {
pm.callEvent(event);
} catch (Throwable ex) {
store.value = ex;
}
}
}
);
secondThread.start();
secondThread.join();
if (store.value != null) {
throw new RuntimeException((Throwable) store.value);
}
}
开发者ID:CyberdyneCC,项目名称:Thermos-Bukkit,代码行数:21,代码来源:PluginManagerTest.java
示例4: testSyncLocked
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testSyncLocked() throws InterruptedException {
final Event event = new TestEvent(false);
Thread secondThread = new Thread(
new Runnable() {
public void run() {
try {
synchronized (pm) {
pm.callEvent(event);
}
} catch (Throwable ex) {
store.value = ex;
}
}
}
);
secondThread.start();
secondThread.join();
if (store.value != null) {
throw new RuntimeException((Throwable) store.value);
}
}
开发者ID:CyberdyneCC,项目名称:Thermos-Bukkit,代码行数:23,代码来源:PluginManagerTest.java
示例5: testAsyncLocked
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testAsyncLocked() throws InterruptedException {
final Event event = new TestEvent(true);
Thread secondThread = new Thread(
new Runnable() {
public void run() {
try {
synchronized (pm) {
pm.callEvent(event);
}
} catch (Throwable ex) {
store.value = ex;
}
}});
secondThread.start();
secondThread.join();
assertThat(store.value, is(instanceOf(IllegalStateException.class)));
assertThat(event.getEventName() + " cannot be triggered asynchronously from inside synchronized code.", is(((Throwable) store.value).getMessage()));
}
开发者ID:AlmuraDev,项目名称:Almura-API,代码行数:20,代码来源:PluginManagerTest.java
示例6: testSyncUnlocked
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testSyncUnlocked() throws InterruptedException {
final Event event = new TestEvent(false);
Thread secondThread = new Thread(
new Runnable() {
public void run() {
try {
pm.callEvent(event);
} catch (Throwable ex) {
store.value = ex;
}
}});
secondThread.start();
secondThread.join();
if (store.value != null) {
throw new RuntimeException((Throwable) store.value);
}
}
开发者ID:AlmuraDev,项目名称:Almura-API,代码行数:19,代码来源:PluginManagerTest.java
示例7: testSyncLocked
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testSyncLocked() throws InterruptedException {
final Event event = new TestEvent(false);
Thread secondThread = new Thread(
new Runnable() {
public void run() {
try {
synchronized (pm) {
pm.callEvent(event);
}
} catch (Throwable ex) {
store.value = ex;
}
}});
secondThread.start();
secondThread.join();
if (store.value != null) {
throw new RuntimeException((Throwable) store.value);
}
}
开发者ID:AlmuraDev,项目名称:Almura-API,代码行数:21,代码来源:PluginManagerTest.java
示例8: testAsyncSameThread
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testAsyncSameThread() {
final Event event = new TestEvent(true);
try {
pm.callEvent(event);
} catch (IllegalStateException ex) {
assertThat(event.getEventName() + " cannot be triggered asynchronously from primary server thread.", is(ex.getMessage()));
return;
}
throw new IllegalStateException("No exception thrown");
}
开发者ID:CyberdyneCC,项目名称:Thermos-Bukkit,代码行数:12,代码来源:PluginManagerTest.java
示例9: testSyncSameThread
import org.bukkit.event.TestEvent; //导入依赖的package包/类
@Test
public void testSyncSameThread() {
final Event event = new TestEvent(false);
pm.callEvent(event);
}
开发者ID:CyberdyneCC,项目名称:Thermos-Bukkit,代码行数:6,代码来源:PluginManagerTest.java
注:本文中的org.bukkit.event.TestEvent类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论