File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2000, 2015 IBM Corporation and others.
2
+ * Copyright (c) 2000, 2025 IBM Corporation and others.
3
3
*
4
4
* This program and the accompanying materials
5
5
* are made available under the terms of the Eclipse Public License 2.0
13
13
*******************************************************************************/
14
14
package org .eclipse .swt .tests .junit ;
15
15
16
-
17
- import static org .junit .Assert .assertNotNull ;
18
- import static org .junit .Assert .assertTrue ;
16
+ import static org .junit .jupiter .api .Assertions .assertNotNull ;
17
+ import static org .junit .jupiter .api .Assertions .assertTrue ;
19
18
20
19
import org .eclipse .swt .events .TypedEvent ;
21
20
import org .eclipse .swt .widgets .Event ;
22
21
import org .eclipse .swt .widgets .Shell ;
23
- import org .junit .After ;
24
- import org .junit .Before ;
25
- import org .junit .Test ;
22
+ import org .junit .jupiter . api . AfterEach ;
23
+ import org .junit .jupiter . api . BeforeEach ;
24
+ import org .junit .jupiter . api . Test ;
26
25
27
26
/**
28
27
* Automated Test Suite for class org.eclipse.swt.events.TypedEvent
31
30
*/
32
31
public class Test_org_eclipse_swt_events_TypedEvent {
33
32
34
- @ Before
33
+ @ BeforeEach
35
34
public void setUp () {
36
35
shell = new Shell ();
37
36
}
38
37
39
- @ After
38
+ @ AfterEach
40
39
public void tearDown () {
41
40
shell .dispose ();
42
41
}
You can’t perform that action at this time.
0 commit comments