Error reading included file Templates/UnitTests/Templates/Licenses/license-default.txt
package com.thoughtworks.xstream.tools.benchmark;
import junit.framework.TestCase;
/**
*
* @author mikepipo
*/
public class HarnessTest extends TestCase {
// public HarnessTest(String testName) {
super(testName);
}
@Override
protected void setUp() throws Exception {
super.setUp();
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
}
/**
* Test of addProduct method, of class Harness.
*/
public void testAddProduct() {
System.out.println("addProduct");
Product product = null;
Harness instance = new Harness();
instance.addProduct(product);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of addTarget method, of class Harness.
*/
public void testAddTarget() {
System.out.println("addTarget");
Target target = null;
Harness instance = new Harness();
instance.addTarget(target);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of addMetric method, of class Harness.
*/
public void testAddMetric() {
System.out.println("addMetric");
Metric metric = null;
Harness instance = new Harness();
instance.addMetric(metric);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
/**
* Test of run method, of class Harness.
*/
public void testRun() {
System.out.println("run");
Reporter reporter = null;
Harness instance = new Harness();
instance.run(reporter);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
}