Coverage Report - org.jbehave.core.steps.Row
 
Classes in this File Line Coverage Branch Coverage Complexity
Row
N/A
N/A
1
 
 1  
 package org.jbehave.core.steps;
 2  
 
 3  
 import java.util.Map;
 4  
 
 5  
 /**
 6  
  * Represents a row in an {@link ExamplesTable}.
 7  
  */
 8  
 public interface Row {
 9  
 
 10  
     /**
 11  
      * Returns the values as a Map, where the key is the column name and the value is the row value.
 12  
      * 
 13  
      * @return The Map of values
 14  
      */
 15  
     Map<String, String> values();
 16  
 
 17  
 }