Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/BranchEventManagerLoopbackTest.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/BranchEventManagerLoopbackTest.java58
1 files changed, 29 insertions, 29 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/BranchEventManagerLoopbackTest.java b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/BranchEventManagerLoopbackTest.java
index f751aceb00e..681709d0541 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/BranchEventManagerLoopbackTest.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core.test/src/org/eclipse/osee/framework/skynet/core/test/event/BranchEventManagerLoopbackTest.java
@@ -8,32 +8,32 @@
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
-package org.eclipse.osee.framework.skynet.core.test.event;
-
-import org.eclipse.osee.framework.skynet.core.event.InternalEventManager2;
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
-
-/**
- * event loopback will test that remote messages get processed and treated like local messages by turning off local and
- * enabling remote to be loop-ed back without another client. same tests as base-class should still pass
- *
- * @author Donald G. Dunne
- */
-public class BranchEventManagerLoopbackTest extends BranchEventManagerTest {
-
- @BeforeClass
- public static void setUp() {
- InternalEventManager2.setEnableRemoteEventLoopback(true);
- }
-
- @AfterClass
- public static void tearDown() {
- InternalEventManager2.setEnableRemoteEventLoopback(false);
- }
-
- @Override
- protected boolean isRemoteTest() {
- return true;
- }
-}
+package org.eclipse.osee.framework.skynet.core.test.event;
+
+import org.eclipse.osee.framework.skynet.core.event.InternalEventManager2;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+
+/**
+ * event loopback will test that remote messages get processed and treated like local messages by turning off local and
+ * enabling remote to be loop-ed back without another client. same tests as base-class should still pass
+ *
+ * @author Donald G. Dunne
+ */
+public class BranchEventManagerLoopbackTest extends BranchEventManagerTest {
+
+ @BeforeClass
+ public static void setUp() {
+ InternalEventManager2.setEnableRemoteEventLoopback(true);
+ }
+
+ @AfterClass
+ public static void tearDown() {
+ InternalEventManager2.setEnableRemoteEventLoopback(false);
+ }
+
+ @Override
+ protected boolean isRemoteTest() {
+ return true;
+ }
+}

Back to the top