*/
public class JstdTestCaseFactoryTest extends TestCase {
public void testCreateWithTests() throws Exception {
List<FileInfo> files = Lists.newArrayList();
FileInfo one = new FileInfo("one.js", 1234, -1, false, false, null, "one.js");
FileInfo two = new FileInfo("two.js", 1234, -1, false, false, null, "two.js");
FileInfo three = new FileInfo("three.js", 1234, -1, false, false, null, "three.js");
files.add(one);
files.add(two);
files.add(three);
FileInfo testOne = new FileInfo("oneTest.js", 1234, -1, false, false, null, "oneTest.js");
FileInfo testTwo = new FileInfo("twoTest.js", 1234, -1, false, false, null, "twoTest.js");
FileInfo testThree = new FileInfo("threeTest.js", 1234, -1, false, false, null, "threeTest.js");
List<FileInfo> tests = Lists.newArrayList(testOne, testTwo, testThree);
final JstdTestCaseFactory testCaseFactory = new JstdTestCaseFactory(
Collections.<JstdTestCaseProcessor> emptySet(),
Collections.<ResourceDependencyResolver>emptySet(), new NullStopWatch());