Skip to content

Commit

Permalink
[BUILD] Move EclipseTestThread into client.util package
Browse files Browse the repository at this point in the history
  • Loading branch information
m273d15 committed Oct 17, 2019
1 parent 151c74f commit c664286
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Expand Up @@ -7,8 +7,8 @@
import org.junit.BeforeClass;
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.test.util.EclipseTestThread;

public class AddMultipleFilesTest extends StfTestCase {

Expand Down
Expand Up @@ -13,10 +13,10 @@
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.client.tester.SarosTester;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.stf.shared.Constants.TypeOfCreateProject;
import saros.stf.test.stf.Constants;
import saros.test.util.EclipseTestThread;

public class EditDuringInvitationStressTest extends StfTestCase {

Expand Down
Expand Up @@ -12,9 +12,9 @@
import org.junit.Test;
import saros.stf.annotation.TestLink;
import saros.stf.client.StfTestCase;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.stf.test.stf.Constants;
import saros.test.util.EclipseTestThread;

@TestLink(id = "Saros-36_edit_during_invitation")
public class EditDuringInvitationTest extends StfTestCase {
Expand Down
Expand Up @@ -8,8 +8,8 @@
import org.junit.BeforeClass;
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.test.util.EclipseTestThread;

public class EditDuringNonHostAddsProjectTest extends StfTestCase {

Expand Down
Expand Up @@ -12,9 +12,9 @@
import org.junit.Ignore;
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.stf.test.stf.Constants;
import saros.test.util.EclipseTestThread;

public class EditDuringNonHostInvitationTest extends StfTestCase {

Expand Down
Expand Up @@ -8,8 +8,8 @@
import org.junit.Test;
import saros.stf.annotation.TestLink;
import saros.stf.client.StfTestCase;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.test.util.EclipseTestThread;

@TestLink(id = "Saros-7_consistency_watchdog_and_stop_manager")
public class RecoveryWhileTypingTest extends StfTestCase {
Expand Down
Expand Up @@ -9,9 +9,9 @@
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.client.tester.AbstractTester;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.stf.shared.Constants.TypeOfCreateProject;
import saros.test.util.EclipseTestThread;

public class ConcurrentEditingInsert100CharactersTest extends StfTestCase {

Expand Down
Expand Up @@ -10,8 +10,8 @@
import org.junit.BeforeClass;
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.test.util.EclipseTestThread;

/**
* This class tests the concurrent editing of three users during a session.
Expand Down
Expand Up @@ -7,9 +7,9 @@
import org.junit.BeforeClass;
import org.junit.Test;
import saros.stf.client.StfTestCase;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.stf.shared.Constants.TypeOfCreateProject;
import saros.test.util.EclipseTestThread;

public class EditDifferentFilesTest extends StfTestCase {

Expand Down
2 changes: 1 addition & 1 deletion stf/src/saros/stf/client/StfTestCase.java
Expand Up @@ -21,9 +21,9 @@
import org.junit.runners.model.FrameworkMethod;
import saros.net.xmpp.JID;
import saros.stf.client.tester.AbstractTester;
import saros.stf.client.util.EclipseTestThread;
import saros.stf.client.util.Util;
import saros.stf.server.rmi.remotebot.IRemoteWorkbenchBot;
import saros.test.util.EclipseTestThread;

public abstract class StfTestCase {

Expand Down
2 changes: 1 addition & 1 deletion stf/src/saros/stf/client/util/EclipseTestThread.java
@@ -1,4 +1,4 @@
package saros.test.util;
package saros.stf.client.util;

/**
* A Thread which runs the give Runnable. After the thread finished, you might call verify to ensure
Expand Down

0 comments on commit c664286

Please sign in to comment.