/** * Copyright (c) 2012 BMW Car IT and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.jnario.feature.tests.integration; import org.jnario.feature.tests.integration.ReferencesForStepsFeature; import org.jnario.jnario.test.util.FeatureExecutor; import org.jnario.jnario.test.util.FeatureTestCreator; import org.jnario.lib.Assert; import org.jnario.lib.JnarioIterableExtensions; import org.jnario.lib.Should; import org.jnario.lib.StepArguments; import org.jnario.lib.StringConversions; import org.jnario.runner.CreateWith; import org.jnario.runner.FeatureRunner; import org.jnario.runner.Named; import org.jnario.runner.Order; import org.junit.Test; import org.junit.runner.Result; import org.junit.runner.RunWith; @RunWith(FeatureRunner.class) @Named("Scenario: Defining a step and using it in the same scenario") @CreateWith(FeatureTestCreator.class) @SuppressWarnings("all") public class ReferencesForStepsFeatureDefiningAStepAndUsingItInTheSameScenario extends ReferencesForStepsFeature { CharSequence jnarioFile; @Test @Order(0) @Named("When I have a scenario with reused steps that throw an exception") public void _whenIHaveAScenarioWithReusedStepsThatThrowAnException() { final StepArguments args = new StepArguments("package bootstrap\nFeature: Test\n\tScenario: TestScenario 1\n\t\tGiven step\n\t\t\tthrow new RuntimeException()\n\t\t\n\tScenario: TestScenario 2\n\t\tGiven step\n"); String _first = JnarioIterableExtensions.<String>first(args); this.jnarioFile = _first; } @Test @Order(1) @Named("Then the number of failures should be \\\"2\\\"") public void _thenTheNumberOfFailuresShouldBe2() { final StepArguments args = new StepArguments("2"); Result _run = FeatureExecutor.run(this.jnarioFile); int _failureCount = _run.getFailureCount(); String _first = JnarioIterableExtensions.<String>first(args); int _int = StringConversions.toInt(_first); Assert.assertTrue("\nExpected jnarioFile.run.failureCount => args.first.toInt but" + "\n jnarioFile.run.failureCount is " + new org.hamcrest.StringDescription().appendValue(Integer.valueOf(_failureCount)).toString() + "\n jnarioFile.run is " + new org.hamcrest.StringDescription().appendValue(_run).toString() + "\n jnarioFile is " + new org.hamcrest.StringDescription().appendValue(this.jnarioFile).toString() + "\n args.first.toInt is " + new org.hamcrest.StringDescription().appendValue(Integer.valueOf(_int)).toString() + "\n args.first is " + new org.hamcrest.StringDescription().appendValue(_first).toString() + "\n args is " + new org.hamcrest.StringDescription().appendValue(args).toString() + "\n", Should.<Integer>operator_doubleArrow(Integer.valueOf(_failureCount), Integer.valueOf(_int))); } }