|
From: <luk...@us...> - 2006-09-19 16:19:22
|
Revision: 92
http://svn.sourceforge.net/asunit/?rev=92&view=rev
Author: lukebayes
Date: 2006-09-19 09:19:15 -0700 (Tue, 19 Sep 2006)
Log Message:
-----------
added test suites to repository
Added Paths:
-----------
trunk/framework/as3/AllTests.as
trunk/framework/as3/asunit/AllTests.as
trunk/framework/as3/asunit/framework/AllTests.as
Added: trunk/framework/as3/AllTests.as
===================================================================
--- trunk/framework/as3/AllTests.as (rev 0)
+++ trunk/framework/as3/AllTests.as 2006-09-19 16:19:15 UTC (rev 92)
@@ -0,0 +1,11 @@
+package {
+ import asunit.framework.TestSuite;
+ import asunit.AllTests;
+
+ public class AllTests extends TestSuite {
+
+ public function AllTests() {
+ addTest(new asunit.AllTests());
+ }
+ }
+}
Added: trunk/framework/as3/asunit/AllTests.as
===================================================================
--- trunk/framework/as3/asunit/AllTests.as (rev 0)
+++ trunk/framework/as3/asunit/AllTests.as 2006-09-19 16:19:15 UTC (rev 92)
@@ -0,0 +1,11 @@
+package asunit {
+ import asunit.framework.TestSuite;
+ import asunit.framework.AllTests;
+
+ public class AllTests extends TestSuite {
+
+ public function AllTests() {
+ addTest(new asunit.framework.AllTests());
+ }
+ }
+}
Added: trunk/framework/as3/asunit/framework/AllTests.as
===================================================================
--- trunk/framework/as3/asunit/framework/AllTests.as (rev 0)
+++ trunk/framework/as3/asunit/framework/AllTests.as 2006-09-19 16:19:15 UTC (rev 92)
@@ -0,0 +1,19 @@
+package asunit.framework {
+ import asunit.framework.TestSuite;
+ import asunit.framework.AssertTest;
+ import asunit.framework.TestCaseTest;
+ import asunit.framework.TestFailureTest;
+ import asunit.framework.TestSuiteTest;
+ import asunit.framework.VisualTestCaseTest;
+
+ public class AllTests extends TestSuite {
+
+ public function AllTests() {
+ addTest(new asunit.framework.AssertTest());
+ addTest(new asunit.framework.TestCaseTest());
+ addTest(new asunit.framework.TestFailureTest());
+ addTest(new asunit.framework.TestSuiteTest());
+ addTest(new asunit.framework.VisualTestCaseTest());
+ }
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|