Coverage Report - org.jbehave.core.embedder.EmbedderMonitor
 
Classes in this File Line Coverage Branch Coverage Complexity
EmbedderMonitor
N/A
N/A
1
 
 1  
 package org.jbehave.core.embedder;
 2  
 
 3  
 import java.io.File;
 4  
 import java.util.List;
 5  
 import java.util.Properties;
 6  
 import java.util.concurrent.ExecutorService;
 7  
 
 8  
 import org.jbehave.core.failures.BatchFailures;
 9  
 import org.jbehave.core.model.Meta;
 10  
 import org.jbehave.core.model.Story;
 11  
 import org.jbehave.core.model.StoryMaps;
 12  
 import org.jbehave.core.reporters.ReportsCount;
 13  
 
 14  
 public interface EmbedderMonitor {
 15  
 
 16  
     void runningEmbeddable(String name);
 17  
 
 18  
     void embeddableFailed(String name, Throwable cause);
 19  
 
 20  
     void embeddableNotConfigurable(String name);
 21  
 
 22  
     void embeddablesSkipped(List<String> classNames);
 23  
 
 24  
     void metaNotAllowed(Meta meta, MetaFilter filter);
 25  
 
 26  
     void runningStory(String path);
 27  
 
 28  
     void storyFailed(String path, Throwable cause);
 29  
 
 30  
     void storiesSkipped(List<String> storyPaths);
 31  
 
 32  
     void batchFailed(BatchFailures failures);
 33  
 
 34  
     void beforeOrAfterStoriesFailed();
 35  
 
 36  
     void generatingReportsView(File outputDirectory, List<String> formats, Properties viewProperties);
 37  
 
 38  
     void reportsViewGenerationFailed(File outputDirectory, List<String> formats, Properties viewProperties,
 39  
             Throwable cause);
 40  
 
 41  
     void reportsViewGenerated(ReportsCount count);
 42  
 
 43  
     void reportsViewNotGenerated();
 44  
     
 45  
     void runningWithAnnotatedEmbedderRunner(String className);
 46  
 
 47  
     void annotatedInstanceNotOfType(Object annotatedInstance, Class<?> type);
 48  
 
 49  
     void mappingStory(String storyPath, List<String> metaFilters);
 50  
 
 51  
     void generatingMapsView(File outputDirectory, StoryMaps storyMaps, Properties viewProperties);
 52  
 
 53  
     void mapsViewGenerationFailed(File outputDirectory, StoryMaps storyMaps, Properties viewProperties, Throwable cause);
 54  
 
 55  
     void generatingNavigatorView(File outputDirectory, Properties viewResources);
 56  
 
 57  
     void navigatorViewGenerationFailed(File outputDirectory, Properties viewResources, Throwable cause);
 58  
 
 59  
     void navigatorViewNotGenerated();
 60  
 
 61  
     void processingSystemProperties(Properties properties);
 62  
 
 63  
     void systemPropertySet(String name, String value);
 64  
 
 65  
     void storyTimeout(Story story, long durationInSecs, long timeoutInSecs);
 66  
 
 67  
     void usingThreads(int threads);
 68  
 
 69  
     void usingExecutorService(ExecutorService executorService);
 70  
 
 71  
     void usingControls(EmbedderControls embedderControls);
 72  
 
 73  
 }