File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
src/test/java/com/laytonsmith/core Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 5
5
import org .junit .Before ;
6
6
import org .junit .BeforeClass ;
7
7
8
+ import com .laytonsmith .testing .AbstractIntegrationTest ;
9
+
8
10
/**
9
11
*
10
12
*
11
13
*/
12
- public class ScriptTest {
14
+ public class ScriptTest extends AbstractIntegrationTest {
13
15
14
16
public ScriptTest () {
15
17
}
Original file line number Diff line number Diff line change 1
1
package com .laytonsmith .core .asm ;
2
2
3
3
import com .laytonsmith .PureUtilities .Common .OSUtils ;
4
+ import com .laytonsmith .testing .AbstractIntegrationTest ;
5
+
4
6
import org .junit .FixMethodOrder ;
5
7
import org .junit .Test ;
6
8
import org .junit .runners .MethodSorters ;
12
14
import static com .laytonsmith .core .asm .AsmIntegrationTestUtils .installToolchain ;
13
15
14
16
@ FixMethodOrder (MethodSorters .NAME_ASCENDING )
15
- public class AsmIntegrationTests {
17
+ public class AsmIntegrationTests extends AbstractIntegrationTest {
16
18
17
19
@ Test
18
20
public void aaaTestToolchainInstallation () throws Exception {
Original file line number Diff line number Diff line change 8
8
import org .junit .BeforeClass ;
9
9
import org .junit .Test ;
10
10
11
+ import com .laytonsmith .testing .AbstractIntegrationTest ;
12
+
11
13
/**
12
14
*
13
15
*
14
16
*/
15
- public class CryptoTest {
17
+ public class CryptoTest extends AbstractIntegrationTest {
16
18
17
19
public CryptoTest () {
18
20
}
Original file line number Diff line number Diff line change 6
6
import com .laytonsmith .core .Prefs ;
7
7
import com .laytonsmith .core .Static ;
8
8
import com .laytonsmith .core .environments .CommandHelperEnvironment ;
9
+ import com .laytonsmith .testing .AbstractIntegrationTest ;
9
10
import com .laytonsmith .testing .StaticTest ;
10
11
import org .junit .After ;
11
12
import org .junit .AfterClass ;
27
28
*/
28
29
//@RunWith(PowerMockRunner.class)
29
30
//@PrepareForTest({Static.class, CommandHelperPlugin.class})
30
- public class PermissionsTest {
31
+ public class PermissionsTest extends AbstractIntegrationTest {
31
32
32
33
MCServer fakeServer ;
33
34
MCPlayer fakePlayer ;
You can’t perform that action at this time.
0 commit comments