Package fixture.todo.integtests

Examples of fixture.todo.integtests.ToDoItemsIntegTestFixture


public class ToDoItemTest_ownedBy extends ToDoIntegTest {

    @Before
    public void setUpData() throws Exception {
        scenarioExecution().install(new ToDoItemsIntegTestFixture());
    }
View Full Code Here


public class ToDoItemTest_notYetCompleted extends ToDoIntegTest {

    @Before
    public void setUpData() throws Exception {
        scenarioExecution().install(new ToDoItemsIntegTestFixture());
    }
View Full Code Here

public class ToDoItemContributionsTest_updateCategory extends ToDoIntegTest {

    @Before
    public void setUpData() throws Exception {
        scenarioExecution().install(new ToDoItemsIntegTestFixture().withTracing());
    }
View Full Code Here

public class ToDoItemTest_description extends ToDoIntegTest {

    @Before
    public void setUpData() throws Exception {
        scenarioExecution().install(new ToDoItemsIntegTestFixture());
    }
View Full Code Here

public class ToDoItemTest_duplicate extends ToDoIntegTest {

    @Before
    public void setUpData() throws Exception {
        scenarioExecution().install(new ToDoItemsIntegTestFixture());
    }
View Full Code Here

    public static class Finders extends ToDoItemsIntegTest {

        @Before
        public void setUpData() throws Exception {
            scenarioExecution().install(new ToDoItemsIntegTestFixture());
        }
View Full Code Here

    // //////////////////////////////////////

    @Before(value={"@integration", "@ToDoItemsFixture"}, order=20000)
    public void integrationFixtures() throws Throwable {
        scenarioExecution().install(new ToDoItemsIntegTestFixture());
    }
View Full Code Here

public abstract class ToDoItemContributionsIntegTest extends AbstractToDoIntegTest {

    @Before
    public void setUpData() throws Exception {
        scenarioExecution().install(new ToDoItemsIntegTestFixture().withTracing());
    }
View Full Code Here

public class ToDoItemIntegTest extends AbstractToDoIntegTest {

    @Before
    public void setUpData() throws Exception {
        scenarioExecution().install(new ToDoItemsIntegTestFixture());
    }
View Full Code Here

TOP

Related Classes of fixture.todo.integtests.ToDoItemsIntegTestFixture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.