-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathWatercolorTestSuite.as
More file actions
34 lines (23 loc) · 963 Bytes
/
WatercolorTestSuite.as
File metadata and controls
34 lines (23 loc) · 963 Bytes
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
package flexUnitTests
{
import flexUnitTests.commands.execUtils.*;
import flexUnitTests.factories.fxg.FXGToSparkFactoryTests;
import flexUnitTests.factories.svg.SVGToSparkFactoryTests;
import flexUnitTests.managers.HistoryManagerTests;
import flexUnitTests.utils.TransformUtilTests;
[Suite]
[RunWith("org.flexunit.runners.Suite")]
public class WatercolorTestSuite
{
public var arrangeExecuteTests:ArrangeExecuteTests;
public var createExecuteTests:CreateExecuteTests;
public var deleteExecuteTests:DeleteExecuteTests;
public var historyManagerTests:flexUnitTests.managers.HistoryManagerTests;
public var propertyExecuteTests:PropertyExecuteTests;
public var transformExecuteTests:TransformExecuteTests;
public var groupExecuteTests:GroupExecuteTests;
public var svgToSparkFactoryTests:SVGToSparkFactoryTests;
public var fxgToSparkFactoryTests:FXGToSparkFactoryTests;
public var transformUtilTests:TransformUtilTests;
}
}