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 11/*******************************************************************************
2- * Copyright (c) 2000, 2015 IBM Corporation and others.
2+ * Copyright (c) 2000, 2025 IBM Corporation and others.
33 *
44 * This program and the accompanying materials
55 * are made available under the terms of the Eclipse Public License 2.0
1313 *******************************************************************************/
1414package org .eclipse .swt .tests .junit ;
1515
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 ;
1918
2019import org .eclipse .swt .events .TypedEvent ;
2120import org .eclipse .swt .widgets .Event ;
2221import 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 ;
2625
2726/**
2827 * Automated Test Suite for class org.eclipse.swt.events.TypedEvent
3130 */
3231public class Test_org_eclipse_swt_events_TypedEvent {
3332
34- @ Before
33+ @ BeforeEach
3534public void setUp () {
3635 shell = new Shell ();
3736}
3837
39- @ After
38+ @ AfterEach
4039public void tearDown () {
4140 shell .dispose ();
4241}
You can’t perform that action at this time.
0 commit comments