Author: fmeschbe
Date: Sun Mar 3 14:10:13 2013
New Revision: 1452041
URL: http://svn.apache.org/r1452041
Log:
Fix unit test location (folder src/src/... is wrong)
Added:
felix/trunk/inventory/src/test/
- copied from r1451623, felix/trunk/inventory/src/src/test/
Removed:
felix/trunk/inventory/src/src/
Modified:
felix/trunk/inventory/src/test/java/org/apache/felix/inventory/PrinterModeTest.java
Modified:
felix/trunk/inventory/src/test/java/org/apache/felix/inventory/PrinterModeTest.java
URL:
http://svn.apache.org/viewvc/felix/trunk/inventory/src/test/java/org/apache/felix/inventory/PrinterModeTest.java?rev=1452041&r1=1451623&r2=1452041&view=diff
==============================================================================
---
felix/trunk/inventory/src/test/java/org/apache/felix/inventory/PrinterModeTest.java
(original)
+++
felix/trunk/inventory/src/test/java/org/apache/felix/inventory/PrinterModeTest.java
Sun Mar 3 14:10:13 2013
@@ -17,14 +17,11 @@
**************************************************************************/
package org.apache.felix.inventory;
-import org.junit.Test;
-
import junit.framework.TestCase;
-public class PrinterModeTest
+public class PrinterModeTest extends TestCase
{
- @Test
public void test_valueOf()
{
TestCase.assertSame(PrinterMode.TEXT, PrinterMode.valueOf("TEXT"));
@@ -34,7 +31,6 @@ public class PrinterModeTest
TestCase.assertNull(PrinterMode.valueOf("unsupported_name"));
}
- @Test
public void test_name()
{
TestCase.assertEquals("TEXT", PrinterMode.TEXT.name());
@@ -42,7 +38,6 @@ public class PrinterModeTest
TestCase.assertEquals("HTML_FRAGMENT",
PrinterMode.HTML_FRAGMENT.name());
}
- @Test
public void test_equals()
{
TestCase.assertTrue(PrinterMode.TEXT.equals(PrinterMode.TEXT));