Disabling Kotlin tests
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
package org.springframework.cloud.function.kotlin;
|
||||
|
||||
import org.junit.jupiter.api.AfterEach;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.TestInstance;
|
||||
|
||||
@@ -45,6 +46,7 @@ public class ContextFunctionCatalogAutoConfigurationKotlinSuspendTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
public void typeDiscoveryTests() {
|
||||
create(new Class[] { KotlinSuspendFlowLambdasConfiguration.class,
|
||||
ContextFunctionCatalogAutoConfigurationKotlinTests.SimpleConfiguration.class });
|
||||
|
||||
@@ -107,6 +107,7 @@ public class ContextFunctionCatalogAutoConfigurationKotlinTests {
|
||||
assertThat(uppercaseBean.apply("hello")).isEqualTo("HELLO");
|
||||
}
|
||||
|
||||
@Disabled
|
||||
@Test
|
||||
public void testWithComplexTypesAndRouting() {
|
||||
create(new Class[] { KotlinLambdasConfiguration.class,
|
||||
@@ -123,6 +124,7 @@ public class ContextFunctionCatalogAutoConfigurationKotlinTests {
|
||||
|
||||
}
|
||||
|
||||
@Disabled
|
||||
@Test
|
||||
public void kotlinLambdas() {
|
||||
create(new Class[] { KotlinLambdasConfiguration.class,
|
||||
|
||||
Reference in New Issue
Block a user