Annotation Type InConversationScope


@InterceptorBinding @Inherited @Target({METHOD,TYPE}) @Retention(RUNTIME) public @interface InConversationScope
Starts a conversation around the annotated method.
 @Test
 @InConversationScope
 // This test will be run within the context of a conversation
 void testStart() {
     starship.start();
 }