Mercurial > hg > audiodb
comparison bindings/as3/ext/AsUnit.as @ 732:3a0b9700b3d2
* Initial AS3 commit
author | mas01mj |
---|---|
date | Tue, 14 Sep 2010 16:47:10 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
731:65134dd772fc | 732:3a0b9700b3d2 |
---|---|
1 package { | |
2 import asunit.errors.AssertionFailedError; | |
3 import asunit.errors.ClassNotFoundError; | |
4 import asunit.errors.InstanceNotFoundError; | |
5 import asunit.errors.UnimplementedFeatureError; | |
6 import asunit.framework.Assert; | |
7 import asunit.framework.AsynchronousTestCase; | |
8 import asunit.framework.AsynchronousTestCaseExample; | |
9 import asunit.framework.AsyncOperation; | |
10 import asunit.framework.RemotingTestCase; | |
11 import asunit.framework.Test; | |
12 import asunit.framework.TestCase; | |
13 import asunit.framework.TestCaseExample; | |
14 import asunit.framework.TestFailure; | |
15 import asunit.framework.TestListener; | |
16 import asunit.framework.TestMethod; | |
17 import asunit.framework.TestResult; | |
18 import asunit.framework.TestSuite; | |
19 import asunit.runner.BaseTestRunner; | |
20 import asunit.runner.TestSuiteLoader; | |
21 import asunit.runner.Version; | |
22 import asunit.textui.FlexRunner; | |
23 import asunit.textui.FlexTestRunner; | |
24 import asunit.textui.ResultPrinter; | |
25 import asunit.textui.TestRunner; | |
26 import asunit.textui.XMLResultPrinter; | |
27 import asunit.util.ArrayIterator; | |
28 import asunit.util.Iterator; | |
29 import asunit.util.Properties; | |
30 | |
31 public class AsUnit { | |
32 private var assertionFailedError:AssertionFailedError; | |
33 private var classNotFoundError:ClassNotFoundError; | |
34 private var instanceNotFoundError:InstanceNotFoundError; | |
35 private var unimplementedFeatureError:UnimplementedFeatureError; | |
36 private var assert:Assert; | |
37 private var asynchronousTestCase:AsynchronousTestCase; | |
38 private var asynchronousTestCaseExample:AsynchronousTestCaseExample; | |
39 private var asyncOperation:AsyncOperation; | |
40 private var remotingTestCase:RemotingTestCase; | |
41 private var test:Test; | |
42 private var testCase:TestCase; | |
43 private var testCaseExample:TestCaseExample; | |
44 private var testFailure:TestFailure; | |
45 private var testListener:TestListener; | |
46 private var testMethod:TestMethod; | |
47 private var testResult:TestResult; | |
48 private var testSuite:TestSuite; | |
49 private var baseTestRunner:BaseTestRunner; | |
50 private var testSuiteLoader:TestSuiteLoader; | |
51 private var version:Version; | |
52 private var flexRunner:FlexRunner; | |
53 private var flexTestRunner:FlexTestRunner; | |
54 private var resultPrinter:ResultPrinter; | |
55 private var testRunner:TestRunner; | |
56 private var xMLResultPrinter:XMLResultPrinter; | |
57 private var arrayIterator:ArrayIterator; | |
58 private var iterator:Iterator; | |
59 private var properties:Properties; | |
60 private var asUnit:AsUnit; | |
61 } | |
62 } |