This commit is contained in:
Mali Bayhan
2021-10-26 21:52:45 -07:00
parent 96c28dd7b1
commit 84a95837ee
68 changed files with 354 additions and 2725 deletions

View File

@@ -0,0 +1,19 @@
package com.acme.its;
import com.acme.module1.Module1;
import com.acme.module2.Module2;
import org.junit.Test;
public class ModulesTest {
@Test
public void integrationTest1() {
new Module1().coveredByIntegrationTest();
}
@Test
public void integrationTest2() {
new Module2().coveredByIntegrationTest();
}
}