Package net.thucydides.core.reports

Examples of net.thucydides.core.reports.AcceptanceTestReporter


    public void multiple_test_reporters_can_subscribe_to_the_runner()
            throws InitializationError, IOException {

        ThucydidesRunner runner = new ThucydidesRunner(AnnotatedSingleTestScenario.class);
       
        AcceptanceTestReporter reporter1 = mock(AcceptanceTestReporter.class);
        AcceptanceTestReporter reporter2 = mock(AcceptanceTestReporter.class);

        runner.subscribeReporter(reporter1);
        runner.subscribeReporter(reporter2);

        runner.run(new RunNotifier());
View Full Code Here

TOP

Related Classes of net.thucydides.core.reports.AcceptanceTestReporter

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.