Package net.jsunit

Source Code of net.jsunit.DummyFailedTestRunResult

package net.jsunit;

import net.jsunit.model.TestRunResult;
import net.jsunit.model.DummyBrowserResult;

public class DummyFailedTestRunResult extends TestRunResult {

    public DummyFailedTestRunResult() {
        addBrowserResult(new DummyBrowserResult(false, 1, 2));
        addBrowserResult(new DummyBrowserResult(false, 1, 2));
    }
}
TOP

Related Classes of net.jsunit.DummyFailedTestRunResult

TOP
Copyright © 2018 www.massapi.com. 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.