Commit c1e2f8b787db2b4a3e7e421abe7046de1ae646b6

Authored by Ednara Oliveira
1 parent b534e41f
Exists in master

Adaptação para mvn test

Showing 1 changed file with 6 additions and 1 deletions   Show diff stats
impl/core/src/test/java/test/Tests.java
... ... @@ -41,10 +41,11 @@ import java.io.File;
41 41 import org.jboss.shrinkwrap.api.ShrinkWrap;
42 42 import org.jboss.shrinkwrap.api.asset.FileAsset;
43 43 import org.jboss.shrinkwrap.api.spec.JavaArchive;
  44 +import org.junit.Test;
44 45  
45 46 public final class Tests {
46 47  
47   - private Tests() {
  48 + public Tests() {
48 49 }
49 50  
50 51 public static JavaArchive createDeployment(final Class<?> baseClass) {
... ... @@ -65,4 +66,8 @@ public final class Tests {
65 66 public static FileAsset createFileAsset(final String pathname) {
66 67 return new FileAsset(new File(pathname));
67 68 }
  69 +
  70 + @Test
  71 + public void test(){
  72 + }
68 73 }
... ...