1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Forgot simple case.

This commit is contained in:
Cedric Beust 2016-06-11 14:54:14 -07:00
parent e276f3b6d5
commit cd77dc39a4
2 changed files with 15 additions and 4 deletions

View file

@ -20,6 +20,7 @@ class BuildOrderTest @Inject constructor(val taskManager: TaskManager) {
@DataProvider
fun tasks(): Array<Array<out Any>> {
return arrayOf(
arrayOf(listOf("assemble"), listOf("p1:assemble", "p2:assemble", "p3:assemble")),
arrayOf(listOf("p1:assemble"), listOf("p1:assemble")),
arrayOf(listOf("p2:assemble"), listOf("p1:assemble", "p2:assemble")),
arrayOf(listOf("p3:assemble"), listOf("p1:assemble", "p2:assemble", "p3:assemble"))