File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 3838import lombok .extern .slf4j .Slf4j ;
3939import lombok .val ;
4040import org .junit .jupiter .api .BeforeEach ;
41+ import org .junit .jupiter .api .Disabled ;
4142import org .junit .jupiter .api .Test ;
4243import org .junit .jupiter .api .condition .DisabledIfSystemProperty ;
4344
@@ -379,13 +380,15 @@ void testResponseFormatText() {
379380 }
380381
381382 @ Test
383+ @ Disabled ("This behaviour is not released to canary yet." )
382384 void testTemplateFromPromptRegistryById () {
383385 val result = service .templateFromPromptRegistryById ("Cloud ERP systems" ).getOriginalResponse ();
384386 val choices = (result .getFinalResult ()).getChoices ();
385387 assertThat (choices .get (0 ).getMessage ().getContent ()).isNotEmpty ();
386388 }
387389
388390 @ Test
391+ @ Disabled ("This behaviour is not released to canary yet." )
389392 void testTemplateFromPromptRegistryByScenario () {
390393 val result =
391394 service .templateFromPromptRegistryByScenario ("Cloud ERP systems" ).getOriginalResponse ();
@@ -444,6 +447,7 @@ void testStreamingErrorHandlingMasking() {
444447 }
445448
446449 @ Test
450+ @ Disabled ("This behaviour is not released to canary yet." )
447451 void testTranslation () {
448452 val result = service .translation ();
449453 val content = result .getContent ();
You can’t perform that action at this time.
0 commit comments