File tree 4 files changed +0
-11
lines changed
kotlin/src/test/kotlin/io/quarkus/it/testing/repro42000
main/src/test/java/io/quarkus/it/main/testing
4 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package io.quarkus.it.testing.repro42000
3
3
import io.quarkus.test.junit.QuarkusTest
4
4
import java.util.stream.Stream
5
5
import org.junit.jupiter.api.Assertions.assertNotNull
6
- import org.junit.jupiter.api.Disabled
7
6
import org.junit.jupiter.params.ParameterizedTest
8
7
import org.junit.jupiter.params.provider.Arguments
9
8
import org.junit.jupiter.params.provider.MethodSource
@@ -28,8 +27,6 @@ class Repro42000Test {
28
27
29
28
@ParameterizedTest
30
29
@MethodSource(" lambdaProvider" )
31
- @Disabled(" https://github.com/quarkusio/quarkus/issues/42000" )
32
- // fails with `IllegalArgumentException: argument type mismatch`
33
30
fun testLambdaProvider (function : (String ) -> String ) {
34
31
assertNotNull(function)
35
32
}
Original file line number Diff line number Diff line change 6
6
import java .util .function .Supplier ;
7
7
import java .util .stream .Stream ;
8
8
9
- import org .junit .jupiter .api .Disabled ;
10
9
import org .junit .jupiter .api .extension .ExtensionContext ;
11
10
import org .junit .jupiter .params .ParameterizedTest ;
12
11
import org .junit .jupiter .params .provider .Arguments ;
15
14
16
15
import io .quarkus .test .junit .QuarkusTest ;
17
16
18
- @ Disabled ("https://github.com/quarkusio/quarkus/issues/42006" )
19
17
// fails with `java.lang.ClassNotFoundException: io.quarkus.it.main.testing.repro42006.Repro42006Test$LambdaProvider$$Lambda$4007/0x000075d5017e8450`
20
18
@ QuarkusTest
21
19
public class Repro42006Test {
Original file line number Diff line number Diff line change 8
8
import jakarta .inject .Inject ;
9
9
10
10
import org .junit .jupiter .api .BeforeAll ;
11
- import org .junit .jupiter .api .Disabled ;
12
11
import org .junit .jupiter .api .TestInstance ;
13
12
import org .junit .jupiter .params .ParameterizedTest ;
14
13
import org .junit .jupiter .params .provider .MethodSource ;
15
14
16
15
import io .quarkus .it .testing .repro44320 .MyService ;
17
16
import io .quarkus .test .junit .QuarkusTest ;
18
17
19
- @ Disabled ("https://github.com/quarkusio/quarkus/issues/44320" )
20
- // fails with `You must configure at least one set of arguments for this @ParameterizedTest`, because the `set` is empty
21
18
@ TestInstance (TestInstance .Lifecycle .PER_CLASS )
22
19
@ QuarkusTest
23
20
public class Repro44320Test {
Original file line number Diff line number Diff line change 2
2
3
3
import static org .junit .jupiter .api .Assertions .assertEquals ;
4
4
5
- import org .junit .jupiter .api .Disabled ;
6
5
import org .junit .jupiter .api .TestTemplate ;
7
6
import org .junit .jupiter .api .extension .ExtendWith ;
8
7
9
8
import io .quarkus .test .junit .QuarkusTest ;
10
9
11
- @ Disabled ("https://github.com/quarkusio/quarkus/issues/8446" )
12
- // fails with `IllegalArgumentException: argument type mismatch`
13
10
@ QuarkusTest
14
11
public class Repro8446Test {
15
12
@ TestTemplate
You can’t perform that action at this time.
0 commit comments