Exemplo n.º 1
0
 @Test
 public void shouldReturnName() {
   assertThat(
       passingStep.getName(),
       is(
           "<div class=\"passed\"><span class=\"step-keyword\">Given  </span><span class=\"step-name\">I have a new credit card</span><span class=\"step-duration\">107ms</span></div>"));
 }
Exemplo n.º 2
0
 @Test
 public void shouldReturnNameWhenStepSkipped() {
   ConfigurationOptions.instance().setSkippedFailsBuild(false);
   assertThat(
       skippedStep.getName(),
       is(
           "<div class=\"skipped\"><span class=\"step-keyword\">And  </span><span class=\"step-name\">the card should be returned</span><span class=\"step-duration\">000ms</span></div>"));
 }
Exemplo n.º 3
0
 @Test
 public void shouldReturnRowsWhenNoResultsForStep() throws IOException {
   List<String> jsonReports = new ArrayList<String>();
   jsonReports.add(
       getAbsolutePathFromResource("net/masterthought/cucumber/with_no_step_results.json"));
   ReportParser reportParser = new ReportParser(jsonReports);
   Feature feature = reportParser.getFeatures().entrySet().iterator().next().getValue().get(0);
   Step step = feature.getElements().get(0).getSteps().get(0);
   feature.processSteps();
   assertThat(
       step.getName(),
       is(
           "<div class=\"missing\"><span class=\"step-keyword\">Given  </span><span class=\"step-name\">a &quot;Big&quot; customer</span><span class=\"step-duration\"></span><div class=\"step-error-message\"><pre class=\"step-error-message-content\"><span class=\"missing\">Result was missing for this step</span></pre></div></div>"));
 }
Exemplo n.º 4
0
 @Test
 public void shouldReturnNameWhenConfigSkippedTurnedOn() {
   ConfigurationOptions configuration = ConfigurationOptions.instance();
   configuration.setSkippedFailsBuild(true);
   try {
     assertThat(
         skippedStep.getName(),
         is(
             "<div class=\"skipped\"><span class=\"step-keyword\">And  </span><span class=\"step-name\">the card should be returned</span><span class=\"step-duration\">000ms</span></div>"));
   } finally {
     // restore the initial state for next tests
     configuration.setSkippedFailsBuild(false);
   }
 }