Coverage Report - org.jbehave.core.context.ContextView
 
Classes in this File Line Coverage Branch Coverage Complexity
ContextView
N/A
N/A
1
ContextView$NULL
0%
0/3
N/A
1
 
 1  
 package org.jbehave.core.context;
 2  
 
 3  
 /**
 4  
  * ContextView allows the viewing of context-related messages.
 5  
  */
 6  
 public interface ContextView {
 7  
 
 8  
     void show(String story, String scenario, String step);
 9  
     
 10  
     void close();
 11  
     
 12  0
     public static class NULL implements ContextView {
 13  
         public void show(String story, String scenario, String step) {
 14  0
         }
 15  
 
 16  
         public void close() {
 17  0
         }
 18  
     }
 19  
 
 20  
 }