Package com.google.jstestdriver.hooks

Examples of com.google.jstestdriver.hooks.TestsPreProcessor


    final boolean captureConsole = false;
    final String browserId = "webNom";
    final FakeJsTestDriverClient.TestRun expected =
        new FakeJsTestDriverClient.TestRun(browserId, stream, expectedTests, captureConsole);
    final Set<TestsPreProcessor> preProcessors =
        Sets.<TestsPreProcessor> newHashSet(new TestsPreProcessor() {
          public List<String> process(String actualBrowserId, Iterator<String> actualTests) {
            assertEquals(tests, Lists.newArrayList(tests));
            assertEquals(browserId, actualBrowserId);
            return expectedTests;
          }
View Full Code Here

TOP

Related Classes of com.google.jstestdriver.hooks.TestsPreProcessor

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.