Repository: flex-tlf Updated Branches: refs/heads/develop b5a5407fd -> bc2932c48
still trying to set order on the tests Project: http://git-wip-us.apache.org/repos/asf/flex-tlf/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-tlf/commit/bc2932c4 Tree: http://git-wip-us.apache.org/repos/asf/flex-tlf/tree/bc2932c4 Diff: http://git-wip-us.apache.org/repos/asf/flex-tlf/diff/bc2932c4 Branch: refs/heads/develop Commit: bc2932c489d20c42e7ec296df69c14039ca4740f Parents: b5a5407 Author: Alex Harui <[email protected]> Authored: Mon Feb 2 07:33:46 2015 -0800 Committer: Alex Harui <[email protected]> Committed: Mon Feb 2 07:33:46 2015 -0800 ---------------------------------------------------------------------- automation_tests/src/AllTestsSuite.as | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/bc2932c4/automation_tests/src/AllTestsSuite.as ---------------------------------------------------------------------- diff --git a/automation_tests/src/AllTestsSuite.as b/automation_tests/src/AllTestsSuite.as index c8dc050..5d81a5b 100644 --- a/automation_tests/src/AllTestsSuite.as +++ b/automation_tests/src/AllTestsSuite.as @@ -50,28 +50,51 @@ package { [TestCase(order=1)] public var generalFunctionsTest:GeneralFunctionsTest; + [TestCase(order=2)] public var factoryImportTest:FactoryImportTest; + [TestCase(order=3)] public var accessibilityMethodsTest:AccessibilityMethodsTest; + [TestCase(order=4)] public var allChartAttributeTest:AllCharAttributeTest; + [TestCase(order=5)] public var allContAttirbuteTest:AllContAttributeTest; + [TestCase(order=6)] public var allEventTest:AllEventTest; + [TestCase(order=7)] public var allParagraphAttributeTest:AllParaAttributeTest; + [TestCase(order=8)] public var attributeTest:AttributeTest; + [TestCase(order=9)] public var boxTest:BoxTest; + [TestCase(order=10)] public var compositionTest:CompositionTest; + [TestCase(order=11)] public var containerTypeTest:ContainerTypeTest; + [TestCase(order=12)] public var floatTest:FloatTest; + [TestCase(order=13)] public var operationTest:OperationTest; + [TestCase(order=14)] public var scrollingTest:ScrollingTest; + [TestCase(order=15)] public var containerAttributeTest:ContainerAttributeTest; + [TestCase(order=16)] public var boundsAndAlignmentTest:BoundsAndAlignmentTest; + [TestCase(order=17)] public var crossContainerTest:CrossContainerTest; + [TestCase(order=18)] public var elementOperationTest:ElementOperationTest; + [TestCase(order=19)] public var eventOverrideTest:EventOverrideTest; + [TestCase(order=20)] public var flowModelTest:FlowModelTest; + [TestCase(order=21)] public var writingModeTest:WritingModeTest; + [TestCase(order=22)] public var undoRedoTest:UndoRedoTest; + [TestCase(order=23)] public var textFlowEditTest:TextFlowEditTest; + [TestCase(order=24)] public var tabTest:TabTest; }
