// ========================================================================== // Project: TestRunner.targetController Unit Test // Copyright: ©2010 Apple Inc. // ========================================================================== /*globals TestRunner module test ok equals same stop start */ module("TestRunner.targetController"); // TODO: Replace with real unit test for TestRunner.targetController test("test description", function() { var expected = "test"; var result = "test"; equals(result, expected, "test should equal test"); });