forked from patternpark/asunit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAsUnit.as
More file actions
64 lines (63 loc) · 2.66 KB
/
AsUnit.as
File metadata and controls
64 lines (63 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package {
import asunit.errors.AssertionFailedError;
import asunit.errors.ClassNotFoundError;
import asunit.errors.InstanceNotFoundError;
import asunit.errors.UnimplementedFeatureError;
import asunit.framework.Assert;
import asunit.framework.AsynchronousTestCase;
import asunit.framework.AsynchronousTestCaseExample;
import asunit.framework.AsyncOperation;
import asunit.framework.RemotingTestCase;
import asunit.framework.Test;
import asunit.framework.TestCase;
import asunit.framework.TestCaseExample;
import asunit.framework.TestFailure;
import asunit.framework.TestListener;
import asunit.framework.TestMethod;
import asunit.framework.TestResult;
import asunit.framework.TestSuite;
import asunit.runner.BaseTestRunner;
import asunit.runner.TestSuiteLoader;
import asunit.runner.Version;
//import asunit.textui.AirRunner;
import asunit.textui.FlexRunner;
import asunit.textui.FlexTestRunner;
import asunit.textui.ResultPrinter;
import asunit.textui.TestRunner;
import asunit.textui.XMLResultPrinter;
import asunit.util.ArrayIterator;
import asunit.util.Iterator;
import asunit.util.Properties;
public class AsUnit {
private var assertionFailedError:AssertionFailedError;
private var classNotFoundError:ClassNotFoundError;
private var instanceNotFoundError:InstanceNotFoundError;
private var unimplementedFeatureError:UnimplementedFeatureError;
private var assert:Assert;
private var asynchronousTestCase:AsynchronousTestCase;
private var asynchronousTestCaseExample:AsynchronousTestCaseExample;
private var asyncOperation:AsyncOperation;
private var remotingTestCase:RemotingTestCase;
private var test:Test;
private var testCase:TestCase;
private var testCaseExample:TestCaseExample;
private var testFailure:TestFailure;
private var testListener:TestListener;
private var testMethod:TestMethod;
private var testResult:TestResult;
private var testSuite:TestSuite;
private var baseTestRunner:BaseTestRunner;
private var testSuiteLoader:TestSuiteLoader;
private var version:Version;
//private var airRunner:AirRunner;
private var flexRunner:FlexRunner;
private var flexTestRunner:FlexTestRunner;
private var resultPrinter:ResultPrinter;
private var testRunner:TestRunner;
private var xMLResultPrinter:XMLResultPrinter;
private var arrayIterator:ArrayIterator;
private var iterator:Iterator;
private var properties:Properties;
private var asUnit:AsUnit;
}
}