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 A9B7317BF5 for ; Fri, 25 Sep 2015 04:48:46 +0000 (UTC) Received: (qmail 97490 invoked by uid 500); 25 Sep 2015 04:48:37 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 97445 invoked by uid 500); 25 Sep 2015 04:48:37 -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 93826 invoked by uid 99); 25 Sep 2015 04:48:31 -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; Fri, 25 Sep 2015 04:48:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DBC20DFA96; Fri, 25 Sep 2015 04:48:31 +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: Fri, 25 Sep 2015 04:49:47 -0000 Message-Id: In-Reply-To: <49b938a7b12e4c6f9aa6f1e51b6441d4@git.apache.org> References: <49b938a7b12e4c6f9aa6f1e51b6441d4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [78/83] [abbrv] git commit: [flex-falcon] [refs/heads/develop] - add some variable tests add some variable tests Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/3bc7d9c8 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/3bc7d9c8 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/3bc7d9c8 Branch: refs/heads/develop Commit: 3bc7d9c8ff3a020bcafcb1eac702c15eab91cd94 Parents: 343a6a6 Author: Alex Harui Authored: Thu Sep 24 16:38:50 2015 -0700 Committer: Alex Harui Committed: Thu Sep 24 16:38:50 2015 -0700 ---------------------------------------------------------------------- .../feature-tests/as/ASVariableTests.java | 109 +++++++++++++++++++ 1 file changed, 109 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3bc7d9c8/compiler.tests/feature-tests/as/ASVariableTests.java ---------------------------------------------------------------------- diff --git a/compiler.tests/feature-tests/as/ASVariableTests.java b/compiler.tests/feature-tests/as/ASVariableTests.java new file mode 100644 index 0000000..13e8b9c --- /dev/null +++ b/compiler.tests/feature-tests/as/ASVariableTests.java @@ -0,0 +1,109 @@ +/* + * + * 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 as; + +import org.junit.Test; + +/** + * Feature tests for AS Namespaces. + */ +public class ASVariableTests extends ASFeatureTestsBase +{ + @Test + public void ASVariableTests_stringInitializeEmptyString() + { + // all tests can assume that flash.display.Sprite + // flash.system.System and flash.events.Event have been imported + String[] imports = new String[] + { + }; + String[] declarations = new String[] + { + "public static const foo:String = ''", + }; + String[] testCode = new String[] + { + "assertEqual('empty string', foo, '');", + }; + String source = getAS(imports, declarations, testCode, new String[0]); + compileAndRun(source); + } + + @Test + public void ASVariableTests_stringInitializeNull() + { + // all tests can assume that flash.display.Sprite + // flash.system.System and flash.events.Event have been imported + String[] imports = new String[] + { + }; + String[] declarations = new String[] + { + "public static const foo:String = null", + }; + String[] testCode = new String[] + { + "assertEqual('null', foo, null);", + }; + String source = getAS(imports, declarations, testCode, new String[0]); + compileAndRun(source); + } + + @Test + public void ASVariableTests_stringInitializeUndefined() + { + // all tests can assume that flash.display.Sprite + // flash.system.System and flash.events.Event have been imported + String[] imports = new String[] + { + }; + String[] declarations = new String[] + { + "public static const foo:String = undefined", + }; + String[] testCode = new String[] + { + "assertEqual('null', foo, null);", + }; + String source = getAS(imports, declarations, testCode, new String[0]); + compileAndRun(source); + } + + @Test + public void ASVariableTests_AnyInitializeUndefined() + { + // all tests can assume that flash.display.Sprite + // flash.system.System and flash.events.Event have been imported + String[] imports = new String[] + { + }; + String[] declarations = new String[] + { + "public static const foo:* = undefined", + }; + String[] testCode = new String[] + { + "assertEqual('null', foo, undefined);", + }; + String source = getAS(imports, declarations, testCode, new String[0]); + compileAndRun(source); + } + +}