Package com.google.jstestdriver

Examples of com.google.jstestdriver.ServerStartupAction


*/
public class CoverageActionDecoratorTest extends TestCase {
  public void testDecorate() throws Exception {
    CoverageReporterAction reporter = new CoverageReporterAction(null, null, null);
    List<Action> actions =
        Lists.<Action>newArrayList(new ServerStartupAction(0, 0, null, false,
            null, null));
    List<Action> actual = new CoverageActionDecorator(reporter).process(actions);
    assertEquals(2, actual.size());
    assertTrue(actual.get(0) instanceof ServerStartupAction);
    assertTrue(actual.get(1) instanceof CoverageReporterAction);
View Full Code Here

TOP

Related Classes of com.google.jstestdriver.ServerStartupAction

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.