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:
parent
01169a956c
commit
ca394838f0
2 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue