1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-06 19:11:10 +01:00

Make sinttest (Before|After)Class methods non-static

This commit is contained in:
Florian Schmaus 2016-12-23 13:30:30 +01:00
parent 01169a956c
commit ca394838f0
2 changed files with 6 additions and 6 deletions

View file

@ -124,12 +124,12 @@ public class SmackIntegrationTestFrameworkUnitTest {
}
@BeforeClass
public static void setUp() {
public void setUp() {
beforeClassInvoked = true;
}
@AfterClass
public static void tearDown() {
public void tearDown() {
afterClassInvoked = true;
}