@Target(value={TYPE,METHOD}) @Retention(value=RUNTIME) @Documented @Inherited public @interface ConversationDefinitionDeployment
resources() are
 provided, then an conversation definition containing the name of the test class and method would be used to deploy. There are 2 use cases for this annotation:
 
 @ConversationDefinitionDeployment
 class YourTest {
   @BeforeEach
   void setUp(EngageEngine engageEngine) {
       ...
   }
   @Test
   @ConversationDefinitionDeployment
   void myTest(ConversationDefinitionService conversationDefinitionsService) {
       ...
   }
   ...
 }
 Copyright © 2019. All rights reserved.