Migrate ContainerAttributeTest class to FU 4 Remove some unused imports
Project: http://git-wip-us.apache.org/repos/asf/flex-tlf/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-tlf/commit/cd487156 Tree: http://git-wip-us.apache.org/repos/asf/flex-tlf/tree/cd487156 Diff: http://git-wip-us.apache.org/repos/asf/flex-tlf/diff/cd487156 Branch: refs/heads/develop Commit: cd4871560959bf2c064000f79c118bf07afef116 Parents: 0d5ac0c Author: piotrz <[email protected]> Authored: Thu Jun 5 23:11:25 2014 +0200 Committer: piotrz <[email protected]> Committed: Thu Jun 5 23:11:25 2014 +0200 ---------------------------------------------------------------------- automation_tests/src/AllTestsSuite.as | 4 +- .../src/UnitTest/Tests/CompositionTest.as | 2 - .../UnitTest/Tests/ContainerAttributeTest.as | 3398 ++++++++++-------- 3 files changed, 1810 insertions(+), 1594 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/cd487156/automation_tests/src/AllTestsSuite.as ---------------------------------------------------------------------- diff --git a/automation_tests/src/AllTestsSuite.as b/automation_tests/src/AllTestsSuite.as index cd41709..b24715b 100644 --- a/automation_tests/src/AllTestsSuite.as +++ b/automation_tests/src/AllTestsSuite.as @@ -27,6 +27,7 @@ package import UnitTest.Tests.AttributeTest; import UnitTest.Tests.BoxTest; import UnitTest.Tests.CompositionTest; + import UnitTest.Tests.ContainerAttributeTest; import UnitTest.Tests.ContainerTypeTest; import UnitTest.Tests.FloatTest; import UnitTest.Tests.OperationTest; @@ -37,17 +38,18 @@ package public dynamic class AllTestsSuite { public var accessibilityMethodsTest:AccessibilityMethodsTest; - public var compositionTest:CompositionTest; public var allChartAttributeTest:AllCharAttributeTest; public var allContAttirbuteTest:AllContAttributeTest; public var allEventTest:AllEventTest; public var allParagraphAttributeTest:AllParaAttributeTest; public var attributeTest:AttributeTest; public var boxTest:BoxTest; + public var compositionTest:CompositionTest; public var containerTypeTest:ContainerTypeTest; public var floatTest:FloatTest; public var operationTest:OperationTest; public var scrollingTest:ScrollingTest; + public var containerAttributeTest:ContainerAttributeTest; } http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/cd487156/automation_tests/src/UnitTest/Tests/CompositionTest.as ---------------------------------------------------------------------- diff --git a/automation_tests/src/UnitTest/Tests/CompositionTest.as b/automation_tests/src/UnitTest/Tests/CompositionTest.as index fdda766..0ba3dee 100644 --- a/automation_tests/src/UnitTest/Tests/CompositionTest.as +++ b/automation_tests/src/UnitTest/Tests/CompositionTest.as @@ -18,8 +18,6 @@ //////////////////////////////////////////////////////////////////////////////// package UnitTest.Tests { - import UnitTest.ExtendedClasses.TestDescriptor; - import UnitTest.ExtendedClasses.TestSuiteExtended; import UnitTest.ExtendedClasses.VellumTestCase; import UnitTest.Fixtures.TestConfig;
