mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
Bug 400350 - [tests] LaunchUtilsTest use JUnit3 instead of JUnit4
Change-Id: I98d0d0e256c98d49d5ec0ddb03f2487eb82a70f4 Reviewed-on: https://git.eclipse.org/r/10262 Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com> IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com> Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
parent
7734088fea
commit
e28469e9b3
1 changed files with 4 additions and 4 deletions
|
@ -10,17 +10,17 @@
|
|||
*******************************************************************************/
|
||||
package org.eclipse.cdt.tests.dsf.gdb.tests;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.eclipse.cdt.dsf.gdb.launching.LaunchUtils;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
public class LaunchUtilsTest extends TestCase {
|
||||
public class LaunchUtilsTest {
|
||||
|
||||
@Before
|
||||
public void init() {
|
||||
|
@ -31,7 +31,7 @@ public class LaunchUtilsTest extends TestCase {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testGetGDBVersionFromText() {
|
||||
public void tesetGDBVersionFromText() {
|
||||
Map<String, String> versions = new HashMap<String, String>(10);
|
||||
|
||||
versions.put("GNU gdb 6.8.50.20080730", "6.8.50.20080730");
|
||||
|
|
Loading…
Add table
Reference in a new issue