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 55import org .junit .Before ;
66import org .junit .BeforeClass ;
77
8+ import com .laytonsmith .testing .AbstractIntegrationTest ;
9+
810/**
911 *
1012 *
1113 */
12- public class ScriptTest {
14+ public class ScriptTest extends AbstractIntegrationTest {
1315
1416 public ScriptTest () {
1517 }
Original file line number Diff line number Diff line change 11package com .laytonsmith .core .asm ;
22
33import com .laytonsmith .PureUtilities .Common .OSUtils ;
4+ import com .laytonsmith .testing .AbstractIntegrationTest ;
5+
46import org .junit .FixMethodOrder ;
57import org .junit .Test ;
68import org .junit .runners .MethodSorters ;
1214import static com .laytonsmith .core .asm .AsmIntegrationTestUtils .installToolchain ;
1315
1416@ FixMethodOrder (MethodSorters .NAME_ASCENDING )
15- public class AsmIntegrationTests {
17+ public class AsmIntegrationTests extends AbstractIntegrationTest {
1618
1719 @ Test
1820 public void aaaTestToolchainInstallation () throws Exception {
Original file line number Diff line number Diff line change 88import org .junit .BeforeClass ;
99import org .junit .Test ;
1010
11+ import com .laytonsmith .testing .AbstractIntegrationTest ;
12+
1113/**
1214 *
1315 *
1416 */
15- public class CryptoTest {
17+ public class CryptoTest extends AbstractIntegrationTest {
1618
1719 public CryptoTest () {
1820 }
Original file line number Diff line number Diff line change 66import com .laytonsmith .core .Prefs ;
77import com .laytonsmith .core .Static ;
88import com .laytonsmith .core .environments .CommandHelperEnvironment ;
9+ import com .laytonsmith .testing .AbstractIntegrationTest ;
910import com .laytonsmith .testing .StaticTest ;
1011import org .junit .After ;
1112import org .junit .AfterClass ;
2728 */
2829//@RunWith(PowerMockRunner.class)
2930//@PrepareForTest({Static.class, CommandHelperPlugin.class})
30- public class PermissionsTest {
31+ public class PermissionsTest extends AbstractIntegrationTest {
3132
3233 MCServer fakeServer ;
3334 MCPlayer fakePlayer ;
You can’t perform that action at this time.
0 commit comments