This commit is contained in:
anhefti 2020-01-14 14:38:49 +01:00
parent b5c9057589
commit 56a23544df
2 changed files with 21 additions and 5 deletions

View file

@ -146,11 +146,7 @@
</goals> </goals>
<configuration> <configuration>
<excludes> <excludes>
ch/ethz/seb/sebserver/gui/content/**/* <exclude>ch/ethz/seb/sebserver/gui/**/*</exclude>
<exclude>ch/ethz/seb/sebserver/gui/content/**/*</exclude>
<exclude>ch/ethz/seb/sebserver/gui/form/**/*</exclude>
<exclude>ch/ethz/seb/sebserver/gui/table/**/*</exclude>
<exclude>ch/ethz/seb/sebserver/gui/widget/**/*</exclude>
</excludes> </excludes>
</configuration> </configuration>
</execution> </execution>

View file

@ -1420,4 +1420,24 @@ public class UseCasesIntegrationTest extends GuiIntegrationTest {
.getOrThrow(); .getOrThrow();
} }
@Test
@Order(13)
// *************************************
// Use Case 13: Login as examAdmin2 and use newly created configuration
// - change configuration status to "Ready to Use"
public void testUsecase13() throws IOException {
}
@Test
@Order(14)
// *************************************
// Use Case 14: Login as examAdmin2 and use newly created configuration
// - create template from it
// - get all templates
// - check newly created template
public void testUsecase14() throws IOException {
}
} }