Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0F4041830F for ; Thu, 17 Dec 2015 06:33:25 +0000 (UTC) Received: (qmail 17781 invoked by uid 500); 17 Dec 2015 06:33:19 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 17753 invoked by uid 500); 17 Dec 2015 06:33:19 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 17737 invoked by uid 99); 17 Dec 2015 06:33:19 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2015 06:33:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C0CC2E0230; Thu, 17 Dec 2015 06:33:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Thu, 17 Dec 2015 06:33:19 -0000 Message-Id: <55f1b6946a87488a942080e228211a5c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/6] git commit: [flex-asjs] [refs/heads/core_js_to_as] - move HTML test from asjs to as Repository: flex-asjs Updated Branches: refs/heads/core_js_to_as 6a71b8584 -> 93a57d0d7 move HTML test from asjs to as Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/653c047a Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/653c047a Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/653c047a Branch: refs/heads/core_js_to_as Commit: 653c047aa9703d87a5fefdbf6fb02b4d3000f762 Parents: 6a71b85 Author: Alex Harui Authored: Wed Dec 16 14:40:46 2015 -0800 Committer: Alex Harui Committed: Wed Dec 16 14:40:46 2015 -0800 ---------------------------------------------------------------------- .../as/tests/FlexUnitFlexJSApplication.mxml | 46 ++++++ frameworks/projects/HTML/as/tests/build.xml | 160 +++++++++++++++++++ .../tests/flexUnitTests/DataGridColumnTester.as | 27 ++++ .../flexUnitTests/DataGridColumnTesterTest.as | 55 +++++++ .../asjs/tests/FlexUnitFlexJSApplication.mxml | 46 ------ frameworks/projects/HTML/asjs/tests/build.xml | 160 ------------------- .../tests/flexUnitTests/DataGridColumnTester.as | 27 ---- .../flexUnitTests/DataGridColumnTesterTest.as | 55 ------- frameworks/projects/HTML/build.xml | 2 +- 9 files changed, 289 insertions(+), 289 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/as/tests/FlexUnitFlexJSApplication.mxml ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/as/tests/FlexUnitFlexJSApplication.mxml b/frameworks/projects/HTML/as/tests/FlexUnitFlexJSApplication.mxml new file mode 100644 index 0000000..06ad1d6 --- /dev/null +++ b/frameworks/projects/HTML/as/tests/FlexUnitFlexJSApplication.mxml @@ -0,0 +1,46 @@ + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/as/tests/build.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/as/tests/build.xml b/frameworks/projects/HTML/as/tests/build.xml new file mode 100644 index 0000000..4951b51 --- /dev/null +++ b/frameworks/projects/HTML/as/tests/build.xml @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTester.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTester.as b/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTester.as new file mode 100644 index 0000000..e060b1f --- /dev/null +++ b/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTester.as @@ -0,0 +1,27 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +package flexUnitTests +{ + [Suite] + [RunWith("org.flexunit.runners.Suite")] + public class DataGridColumnTester + { + public var dataGridColumnTesterTest:DataGridColumnTesterTest; + } +} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTesterTest.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTesterTest.as b/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTesterTest.as new file mode 100644 index 0000000..1a3cc0f --- /dev/null +++ b/frameworks/projects/HTML/as/tests/flexUnitTests/DataGridColumnTesterTest.as @@ -0,0 +1,55 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +package flexUnitTests +{ + import flexunit.framework.Assert; + + import org.apache.flex.html.supportClasses.DataGridColumn; + + public class DataGridColumnTesterTest + { + [Before] + public function setUp():void + { + } + + [After] + public function tearDown():void + { + } + + [BeforeClass] + public static function setUpBeforeClass():void + { + } + + [AfterClass] + public static function tearDownAfterClass():void + { + } + + [Test] + public function testLabelProperty():void + { + var column:DataGridColumn = new DataGridColumn(); + column.label = "foo"; + Assert.assertEquals("Error testing DataGridColumn.label", column.label, "foo"); + } + } +} http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/asjs/tests/FlexUnitFlexJSApplication.mxml ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/asjs/tests/FlexUnitFlexJSApplication.mxml b/frameworks/projects/HTML/asjs/tests/FlexUnitFlexJSApplication.mxml deleted file mode 100644 index 06ad1d6..0000000 --- a/frameworks/projects/HTML/asjs/tests/FlexUnitFlexJSApplication.mxml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/asjs/tests/build.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/asjs/tests/build.xml b/frameworks/projects/HTML/asjs/tests/build.xml deleted file mode 100644 index 4a12b75..0000000 --- a/frameworks/projects/HTML/asjs/tests/build.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTester.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTester.as b/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTester.as deleted file mode 100644 index e060b1f..0000000 --- a/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTester.as +++ /dev/null @@ -1,27 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////// -// -// Licensed to the Apache Software Foundation (ASF) under one or more -// contributor license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright ownership. -// The ASF licenses this file to You under the Apache License, Version 2.0 -// (the "License"); you may not use this file except in compliance with -// the License. You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////////// -package flexUnitTests -{ - [Suite] - [RunWith("org.flexunit.runners.Suite")] - public class DataGridColumnTester - { - public var dataGridColumnTesterTest:DataGridColumnTesterTest; - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTesterTest.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTesterTest.as b/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTesterTest.as deleted file mode 100644 index 1a3cc0f..0000000 --- a/frameworks/projects/HTML/asjs/tests/flexUnitTests/DataGridColumnTesterTest.as +++ /dev/null @@ -1,55 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////// -// -// Licensed to the Apache Software Foundation (ASF) under one or more -// contributor license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright ownership. -// The ASF licenses this file to You under the Apache License, Version 2.0 -// (the "License"); you may not use this file except in compliance with -// the License. You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -//////////////////////////////////////////////////////////////////////////////// -package flexUnitTests -{ - import flexunit.framework.Assert; - - import org.apache.flex.html.supportClasses.DataGridColumn; - - public class DataGridColumnTesterTest - { - [Before] - public function setUp():void - { - } - - [After] - public function tearDown():void - { - } - - [BeforeClass] - public static function setUpBeforeClass():void - { - } - - [AfterClass] - public static function tearDownAfterClass():void - { - } - - [Test] - public function testLabelProperty():void - { - var column:DataGridColumn = new DataGridColumn(); - column.label = "foo"; - Assert.assertEquals("Error testing DataGridColumn.label", column.label, "foo"); - } - } -} http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/653c047a/frameworks/projects/HTML/build.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/build.xml b/frameworks/projects/HTML/build.xml index b98d7a8..39812ce 100644 --- a/frameworks/projects/HTML/build.xml +++ b/frameworks/projects/HTML/build.xml @@ -44,7 +44,7 @@ - +