You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cz...@apache.org on 2013/05/22 15:50:21 UTC

[01/41] git commit: added rat-report ant task

Updated Branches:
  refs/heads/makeFlexUnitApacheReady [created] 0f9cd8890


added rat-report ant task


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/32d87a53
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/32d87a53
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/32d87a53

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 32d87a53d1a93e216b1db317b48d8722755517be
Parents: 7d4c01c
Author: cyrill.zadra <cy...@gmail.com>
Authored: Fri May 17 16:11:50 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Fri May 17 16:11:50 2013 +0800

----------------------------------------------------------------------
 build.xml |   88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 87 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/32d87a53/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index ee36cac..925caea 100644
--- a/build.xml
+++ b/build.xml
@@ -1,6 +1,21 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+  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.
 
-<!-- 
 Since we're eating our own dogfood here, our build process is a bit non-standard.  Assuming
 the following call should be made to run this script: 
 
@@ -33,6 +48,21 @@ to contribute to our CI process.
    <property name="flexcoverlistener.loc" location="${basedir}/FlexUnit4FlexCoverListener" />
    <property name="turnkey.loc" location="${basedir}/FlexUnit4TurnKey" />
    <property name="sampleCI.loc" location="${basedir}/FlexUnit4SampleCIProject" />
+   
+    <!--
+        Optional jars but should be in place for a real release build.
+
+        For <rat> apache-rat-0.8.jar and apache-rat-tasks-0.8.jar should be in classpath.
+        See rat-report.
+    -->
+    <path id="anttask.classpath">
+        <fileset dir="${env.ANT_HOME}/lib">
+           <include name="**/apache-rat*.jar"/>
+        </fileset>
+        <fileset dir="${user.home}">
+           <include name=".ant/lib/**/apache-rat*.jar"/>
+        </fileset>
+    </path>
 
    <!-- Cleans up all projects -->
    <target name="clean">
@@ -267,4 +297,60 @@ to contribute to our CI process.
       </zip>
 
    </target>
+   
+   
+    <target name="rat-report" depends="rat-taskdef" if="have.rattasks"
+        description="Report on licenses in source kit.">
+
+        <property name="rat.dir" value="${basedir}"/>
+
+        <echo message="Checking files at ${rat.dir}, report is ${basedir}/rat.report"/>
+
+        <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
+            reportFile="${basedir}/rat.report">
+            <fileset dir="${rat.dir}">
+                <!-- generated source files that don't have Apache v2 license header -->
+                <exclude name="**/build.number"/>
+                <exclude name="**/.actionScriptProperties"/>
+                <exclude name="**/.flexProperties"/>
+				        <exclude name="**/.flexLibProperties"/>
+                <exclude name="**/.project"/>
+                <exclude name="**/.fxpProperties"/>
+                <exclude name="**/.settings/**"/>
+                <exclude name="**/.idea/**"/>
+                <exclude name="**/*.iml"/>
+                <!--          End of source files           -->
+                <!--          Start of binary files           -->
+                <!-- exclude media (png, ico) -->
+                <exclude name="**/*.ico"/>
+                <exclude name="**/*.png"/>
+                <!-- exclude fonts -->
+                <exclude name="**/*.ttf"/>
+                <!--          End of binary files           -->
+            </fileset>
+        </rat:report>
+
+    </target>
+
+    <target name="rat-taskdef" description="Rat taskdef">
+        <available property="have.rattasks"
+            resource="org/apache/rat/anttasks/antlib.xml"
+            classpathref="anttask.classpath"/>
+
+        <antcall target="have-rattasks"/>
+        <antcall target="no-rattasks"/>
+    </target>
+
+    <target name="have-rattasks" if="have.rattasks">
+        <typedef resource="org/apache/rat/anttasks/antlib.xml"
+                 uri="antlib:org.apache.rat.anttasks"
+                 classpathref="anttask.classpath"/>
+    </target>
+
+    <target name="no-rattasks" unless="have.rattasks">
+        <echo message="Rat report not generated."/>
+        <echo message="rat jars (apache-rat-*.jar, apache-rat-tasks-*.jar)"/>
+        <echo message="not found in anttask.classpath"/>
+    </target>
+   
 </project>


[07/41] removed adobe copyright header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
index f56c5fb..1d8f3c8 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
 
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
 
 <mx:VBox
    xmlns:mx="http://www.adobe.com/2006/mxml"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
index d147a6e..fb0f911 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
+
 
 <mx:HBox
    xmlns:mx="http://www.adobe.com/2006/mxml"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
index 5a4d53e..2207548 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
index 9e2c900..dfec556 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data
 {
    import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
index f56b237..40a144a 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data
 {
    import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
index 96f8b3b..6d1a655 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data
 {
    import mx.formatters.NumberFormatter;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
index 4cb108b..4a6f86f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
index 4704031..1d7852b 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
index d7ec2fa..7d588a9 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
index 0c3b620..7743cf6 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
index 04e53e4..77a497b 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.data.TestFunctionRowData;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
index 9465d98..df96745 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.data.filter
 {
    public class TestfFunctionStatuses

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
index a089ed9..b49bc42 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.event
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
index 619959d..8c0ea6f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.event
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
index b220454..8c2b7b5 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import org.flexunit.flexui.data.TestFunctionRowData;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
index efe5bd0..f37e2f6 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
index c4b99ad..ff896aa 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
index 76fdd3b..88081cb 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
index c4df54d..a7162b5 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
index e51740b..e32aa60 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
index 3b68c64..6190e0e 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
index b79f8c0..d647892 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
index b2688e6..c0e36d5 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
index c9972d8..8b15c40 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
index 2b0d68a..84cb509 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
index de660b9..f116d2c 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;


[40/41] git commit: updatd ant rat-report - exclude directory

Posted by cz...@apache.org.
updatd ant rat-report - exclude directory


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/47736bc7
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/47736bc7
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/47736bc7

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 47736bc7f37acb8eae711acd993ed024c7ba2017
Parents: 5b6e5f6
Author: cyrill.zadra <cy...@gmail.com>
Authored: Wed May 22 21:34:31 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Wed May 22 21:34:31 2013 +0800

----------------------------------------------------------------------
 build.xml |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/47736bc7/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 2ebe59c..6069e52 100644
--- a/build.xml
+++ b/build.xml
@@ -332,9 +332,12 @@ to contribute to our CI process.
                 <!-- exclude fonts -->
                 <exclude name="**/*.ttf"/>
                 <!--          End of binary files           -->
-				<!--Exclude generated doc -->
-				<exclude name="FlexUnit4/docs/"/>
-				<exclude name="FlexUnit4UIListener/target/docs/"/>
+				        
+                <!--Exclude generated/downloaded doc and files -->
+        				<exclude name="FlexUnit4/docs/"/>
+                <exclude name="FlexUnit4/target/bin/" />
+                <exclude name="FlexUnit4/in/" />
+        		<exclude name="FlexUnit4UIListener/target/docs/"/>
 				
             </fileset>
         </rat:report>


[37/41] git commit: update ant clean target

Posted by cz...@apache.org.
update ant clean target


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/26f66a91
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/26f66a91
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/26f66a91

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 26f66a9159117b177866f488a01ace501957c7bd
Parents: b33e4c4
Author: cyrill.zadra <cy...@gmail.com>
Authored: Wed May 22 00:21:40 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Wed May 22 00:21:40 2013 +0800

----------------------------------------------------------------------
 FlexUnit4Test/build.xml     |    5 ++---
 FlexUnit4Test/downloads.xml |    4 ++--
 2 files changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/26f66a91/FlexUnit4Test/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/build.xml b/FlexUnit4Test/build.xml
index 1cae7f7..8f5e456 100644
--- a/FlexUnit4Test/build.xml
+++ b/FlexUnit4Test/build.xml
@@ -136,14 +136,13 @@
       <delete dir="${dist.loc}" />
       <delete>
          <fileset dir="${lib.loc}">
-			<exclude name="fluint-1_2.swc" />
-            <exclude name="FlexUnit1Lib.swc" />
-            <exclude name="hamcrest-as3*.swc" />
             <exclude name="mock-as3.swc" />
             <exclude name="mockolate*.swc" />
             <exclude name="build/saxon*.jar" />
          </fileset>
       </delete>
+
+	  <ant antfile="${basedir}/downloads.xml" target="clean" dir="${basedir}" />
    </target>
 
    <target name="init">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/26f66a91/FlexUnit4Test/downloads.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/downloads.xml b/FlexUnit4Test/downloads.xml
index 1851b3c..eb214d3 100644
--- a/FlexUnit4Test/downloads.xml
+++ b/FlexUnit4Test/downloads.xml
@@ -58,8 +58,8 @@
             description="Removes thirdparty downloads.">
         <delete includeEmptyDirs="true" failonerror="false">
             <fileset dir="${download.dir}">
-                <include name="FlexUnit1Lib*/**"/>
-            </fileset>
+             	<include name="hamcrest*/**"/>
+			</fileset>
         </delete>
     </target>
     


[20/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/utils/UtilsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/utils/UtilsSuite.as b/FlexUnit4Test/src/org/flexunit/utils/UtilsSuite.as
index 5453a5d..b8fe36a 100644
--- a/FlexUnit4Test/src/org/flexunit/utils/UtilsSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/utils/UtilsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.utils
 {
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/FlexUnit4FluintSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/FlexUnit4FluintSuite.as b/FlexUnit4Test/src/org/fluint/FlexUnit4FluintSuite.as
index 9ffd01a..4658836 100644
--- a/FlexUnit4Test/src/org/fluint/FlexUnit4FluintSuite.as
+++ b/FlexUnit4Test/src/org/fluint/FlexUnit4FluintSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.cases.TestASComponentUse;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/SequenceSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/SequenceSuite.as b/FlexUnit4Test/src/org/fluint/sequence/SequenceSuite.as
index 40a9f16..48b609d 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/SequenceSuite.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/SequenceSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence
 {
 	import org.fluint.sequence.cases.SequenceBindingWaiterCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceBindingWaiterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceBindingWaiterCase.as b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceBindingWaiterCase.as
index 8ee84e5..cc3e9d8 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceBindingWaiterCase.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceBindingWaiterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.cases
 {
 	import mx.binding.utils.ChangeWatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceCallerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceCallerCase.as b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceCallerCase.as
index e6132ec..01d18e3 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceCallerCase.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceCallerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceDelayCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceDelayCase.as b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceDelayCase.as
index 3287369..1b95787 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceDelayCase.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceDelayCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceEventDispatcherCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceEventDispatcherCase.as b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceEventDispatcherCase.as
index 2915a63..c360b96 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceEventDispatcherCase.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceEventDispatcherCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceRunnerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceRunnerCase.as b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceRunnerCase.as
index bc512d0..4842a93 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceRunnerCase.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceRunnerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.cases
 {
 	import org.fluint.sequence.SequenceRunner;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceSetterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceSetterCase.as b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceSetterCase.as
index fc0f742..0f4ed91 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceSetterCase.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceSetterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceWaiterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceWaiterCase.as b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceWaiterCase.as
index 2128044..5f5e0f8 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceWaiterCase.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/cases/SequenceWaiterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceActionMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceActionMock.as b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceActionMock.as
index d3db898..435673f 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceActionMock.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceActionMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/mocks/SequencePendMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequencePendMock.as b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequencePendMock.as
index dbbec70..c0190ff 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequencePendMock.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequencePendMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceRunnerMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceRunnerMock.as b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceRunnerMock.as
index d91c6d1..c312512 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceRunnerMock.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceRunnerMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceStepMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceStepMock.as b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceStepMock.as
index 103cc59..cd2de2c 100644
--- a/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceStepMock.as
+++ b/FlexUnit4Test/src/org/fluint/sequence/mocks/SequenceStepMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/uiImpersonation/UIImpersonationSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/uiImpersonation/UIImpersonationSuite.as b/FlexUnit4Test/src/org/fluint/uiImpersonation/UIImpersonationSuite.as
index a3e9764..a8b02ed 100644
--- a/FlexUnit4Test/src/org/fluint/uiImpersonation/UIImpersonationSuite.as
+++ b/FlexUnit4Test/src/org/fluint/uiImpersonation/UIImpersonationSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation
 {
 	import org.fluint.uiImpersonation.cases.TestEnvironmentCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/TestEnvironmentCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/TestEnvironmentCase.as b/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/TestEnvironmentCase.as
index ae50a1d..0534896 100644
--- a/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/TestEnvironmentCase.as
+++ b/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/TestEnvironmentCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation.cases
 {
 	import flash.display.Sprite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/UIImpersonatorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/UIImpersonatorCase.as b/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/UIImpersonatorCase.as
index 95fdae1..59c14c9 100644
--- a/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/UIImpersonatorCase.as
+++ b/FlexUnit4Test/src/org/fluint/uiImpersonation/cases/UIImpersonatorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation.cases
 {
 	import flash.display.Sprite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/AbstractMatcherTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/AbstractMatcherTestCase.as b/FlexUnit4Test/src/org/hamcrest/AbstractMatcherTestCase.as
index 7ad8ab9..bf57e9f 100755
--- a/FlexUnit4Test/src/org/hamcrest/AbstractMatcherTestCase.as
+++ b/FlexUnit4Test/src/org/hamcrest/AbstractMatcherTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/BaseMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/BaseMatcherTest.as b/FlexUnit4Test/src/org/hamcrest/BaseMatcherTest.as
index a9d96f7..296d582 100755
--- a/FlexUnit4Test/src/org/hamcrest/BaseMatcherTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/BaseMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/CustomMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/CustomMatcherTest.as b/FlexUnit4Test/src/org/hamcrest/CustomMatcherTest.as
index 2dc5f8b..95b27d7 100755
--- a/FlexUnit4Test/src/org/hamcrest/CustomMatcherTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/CustomMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/CustomTypeSafeMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/CustomTypeSafeMatcherTest.as b/FlexUnit4Test/src/org/hamcrest/CustomTypeSafeMatcherTest.as
index f19fcc7..407ec63 100755
--- a/FlexUnit4Test/src/org/hamcrest/CustomTypeSafeMatcherTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/CustomTypeSafeMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/HamcrestMXMLSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/HamcrestMXMLSuite.as b/FlexUnit4Test/src/org/hamcrest/HamcrestMXMLSuite.as
index ac6c33a..bbb2d34 100755
--- a/FlexUnit4Test/src/org/hamcrest/HamcrestMXMLSuite.as
+++ b/FlexUnit4Test/src/org/hamcrest/HamcrestMXMLSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 	import org.hamcrest.mxml.BaseMXMLMatcherTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/HamcrestSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/HamcrestSuite.as b/FlexUnit4Test/src/org/hamcrest/HamcrestSuite.as
index 0b79a03..17974b2 100755
--- a/FlexUnit4Test/src/org/hamcrest/HamcrestSuite.as
+++ b/FlexUnit4Test/src/org/hamcrest/HamcrestSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
     import org.hamcrest.collection.EveryTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/MatcherAssertTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/MatcherAssertTest.as b/FlexUnit4Test/src/org/hamcrest/MatcherAssertTest.as
index 599e0bb..36f0b4b 100755
--- a/FlexUnit4Test/src/org/hamcrest/MatcherAssertTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/MatcherAssertTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/TypeSafeMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/TypeSafeMatcherTest.as b/FlexUnit4Test/src/org/hamcrest/TypeSafeMatcherTest.as
index 57f5742..72f6efa 100755
--- a/FlexUnit4Test/src/org/hamcrest/TypeSafeMatcherTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/TypeSafeMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as b/FlexUnit4Test/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
index 44114ce..ec6f3aa 100644
--- a/FlexUnit4Test/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/EveryTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/EveryTest.as b/FlexUnit4Test/src/org/hamcrest/collection/EveryTest.as
index 2f4e4aa..5d13a28 100755
--- a/FlexUnit4Test/src/org/hamcrest/collection/EveryTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/EveryTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/InArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/InArrayTest.as b/FlexUnit4Test/src/org/hamcrest/collection/InArrayTest.as
index 0f910b2..6e50073 100755
--- a/FlexUnit4Test/src/org/hamcrest/collection/InArrayTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/InArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
 	public class InArrayTest extends AbstractArrayMatcherTestCase

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/IsArrayContainingTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/IsArrayContainingTest.as b/FlexUnit4Test/src/org/hamcrest/collection/IsArrayContainingTest.as
index eff7b02..f86803f 100755
--- a/FlexUnit4Test/src/org/hamcrest/collection/IsArrayContainingTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/IsArrayContainingTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/IsArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/IsArrayTest.as b/FlexUnit4Test/src/org/hamcrest/collection/IsArrayTest.as
index 2e44aec..453d327 100755
--- a/FlexUnit4Test/src/org/hamcrest/collection/IsArrayTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/IsArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import org.hamcrest.object.equalTo;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/IsArrayWithSizeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/IsArrayWithSizeTest.as b/FlexUnit4Test/src/org/hamcrest/collection/IsArrayWithSizeTest.as
index 6fd2d6f..ed7ad66 100755
--- a/FlexUnit4Test/src/org/hamcrest/collection/IsArrayWithSizeTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/IsArrayWithSizeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/SortedByFieldsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/SortedByFieldsTest.as b/FlexUnit4Test/src/org/hamcrest/collection/SortedByFieldsTest.as
index 96c1d1a..253c657 100644
--- a/FlexUnit4Test/src/org/hamcrest/collection/SortedByFieldsTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/SortedByFieldsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/collection/SortedByTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/collection/SortedByTest.as b/FlexUnit4Test/src/org/hamcrest/collection/SortedByTest.as
index abf1f8e..a72e8ea 100644
--- a/FlexUnit4Test/src/org/hamcrest/collection/SortedByTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/collection/SortedByTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
 	import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/AllOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/AllOfTest.as b/FlexUnit4Test/src/org/hamcrest/core/AllOfTest.as
index 061524e..da67db5 100755
--- a/FlexUnit4Test/src/org/hamcrest/core/AllOfTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/AllOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/AnyOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/AnyOfTest.as b/FlexUnit4Test/src/org/hamcrest/core/AnyOfTest.as
index 6d8b65e..8302746 100755
--- a/FlexUnit4Test/src/org/hamcrest/core/AnyOfTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/AnyOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/CombinableTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/CombinableTest.as b/FlexUnit4Test/src/org/hamcrest/core/CombinableTest.as
index afab031..c40a3ac 100755
--- a/FlexUnit4Test/src/org/hamcrest/core/CombinableTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/CombinableTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/DescribedAsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/DescribedAsTest.as b/FlexUnit4Test/src/org/hamcrest/core/DescribedAsTest.as
index 6ed837e..0b0f789 100755
--- a/FlexUnit4Test/src/org/hamcrest/core/DescribedAsTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/DescribedAsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/EvaluateTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/EvaluateTest.as b/FlexUnit4Test/src/org/hamcrest/core/EvaluateTest.as
index 9c72759..3ac02fd 100644
--- a/FlexUnit4Test/src/org/hamcrest/core/EvaluateTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/EvaluateTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 	import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/GivenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/GivenTest.as b/FlexUnit4Test/src/org/hamcrest/core/GivenTest.as
index a1e8004..67569bc 100644
--- a/FlexUnit4Test/src/org/hamcrest/core/GivenTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/GivenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 	import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/IsAnythingTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/IsAnythingTest.as b/FlexUnit4Test/src/org/hamcrest/core/IsAnythingTest.as
index 5ba71ad..807c72e 100755
--- a/FlexUnit4Test/src/org/hamcrest/core/IsAnythingTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/IsAnythingTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/IsNotTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/IsNotTest.as b/FlexUnit4Test/src/org/hamcrest/core/IsNotTest.as
index 03bb4f4..c5fd6cc 100755
--- a/FlexUnit4Test/src/org/hamcrest/core/IsNotTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/IsNotTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/core/ThrowsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/core/ThrowsTest.as b/FlexUnit4Test/src/org/hamcrest/core/ThrowsTest.as
index 0b8256f..64195fd 100755
--- a/FlexUnit4Test/src/org/hamcrest/core/ThrowsTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/core/ThrowsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/date/DateAfterTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/date/DateAfterTest.as b/FlexUnit4Test/src/org/hamcrest/date/DateAfterTest.as
index 38e97e1..6051ca1 100755
--- a/FlexUnit4Test/src/org/hamcrest/date/DateAfterTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/date/DateAfterTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/date/DateBeforeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/date/DateBeforeTest.as b/FlexUnit4Test/src/org/hamcrest/date/DateBeforeTest.as
index d070bdc..6e212d3 100755
--- a/FlexUnit4Test/src/org/hamcrest/date/DateBeforeTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/date/DateBeforeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/date/DateBetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/date/DateBetweenTest.as b/FlexUnit4Test/src/org/hamcrest/date/DateBetweenTest.as
index 0fccdf7..1e017e7 100755
--- a/FlexUnit4Test/src/org/hamcrest/date/DateBetweenTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/date/DateBetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/date/DateEqualTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/date/DateEqualTest.as b/FlexUnit4Test/src/org/hamcrest/date/DateEqualTest.as
index 0a88a2e..d316c19 100755
--- a/FlexUnit4Test/src/org/hamcrest/date/DateEqualTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/date/DateEqualTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/filter/FilterFunctionTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/filter/FilterFunctionTest.as b/FlexUnit4Test/src/org/hamcrest/filter/FilterFunctionTest.as
index 6ed0078..d72a915 100644
--- a/FlexUnit4Test/src/org/hamcrest/filter/FilterFunctionTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/filter/FilterFunctionTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.filter
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as b/FlexUnit4Test/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
index b063b76..8acc0a2 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
     import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
index 9e0a740..74ebfef 100644
--- a/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
index 97601c4..65d1e6f 100644
--- a/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
index 55064fc..e5301f5 100644
--- a/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayTest.as
index 00b2dd9..7018f5b 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.flexunit.assertThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
index 434fe07..028b5a5 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/collection/EmptyArrayTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
index b90a6f2..69c7546 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/collection/EveryItemTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/collection/EveryItemTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/collection/EveryItemTest.as
index 22712af..cc630e0 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/collection/EveryItemTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/collection/EveryItemTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemTest.as
index e04c01a..03cf44d 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemsTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemsTest.as
index 59be2fc..856d4c9 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemsTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/collection/HasItemsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/collection/InArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/collection/InArrayTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/collection/InArrayTest.as
index 0be48ce..24701fa 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/collection/InArrayTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/collection/InArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
 	import org.hamcrest.collection.InArrayMatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/core/AllOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/core/AllOfTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/core/AllOfTest.as
index be9fe6a..2372c6b 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/core/AllOfTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/core/AllOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/core/AnyOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/core/AnyOfTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/core/AnyOfTest.as
index be4cbc7..4c085cb 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/core/AnyOfTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/core/AnyOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/core/AnythingTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/core/AnythingTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/core/AnythingTest.as
index 8cd311d..80df524 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/core/AnythingTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/core/AnythingTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
index db6999e..7eacd91 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.BaseMXMLMatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/core/DescribedAsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/core/DescribedAsTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/core/DescribedAsTest.as
index 018a867..8c3c78e 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/core/DescribedAsTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/core/DescribedAsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml b/FlexUnit4Test/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
index be7ad4a..19c72c6 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Canvas 
     height="300"
     width="400"


[09/41] removed adobe copyright header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
index 590068e..f9bc3b2 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCH
 ANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestListener extends TestCase implements TestListener
   {
       public function TestTestListener(name : String = null)
       {
           super(name);
       }
   
   	public function addError( test : Test, e : Error ) : void
   	{
   		errorCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function addFailure( test : Test , e : AssertionFailedError ) : void
   	{
   		failureCount++;
   	}
   	
   //------------------------------------------------------------------------------
   
   	public function startTest( test : Test ) : void 
   	{
   		startCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function endTest( test : Test ) : void 
   	{
   		endCount++;
   	}
   	
   //---------------------------------------------------------------------
 ---------
   
   	override public function setUp() : void
   	{
   		result = new TestResult();
   		result.addListener( TestListener(this) );
   	
   		startCount = 0;
   		endCount = 0;
   		failureCount = 0;
   		errorCount = 0;
   	}
   	
   //------------------------------------------------------------------------------
   	
   	public function testError():void 
   	{
   		var test : TestCase = new ErrorTestCase( "throwError" )
   		test.runWithResult( result );
   		Assert.assertEquals("error", 1, errorCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testFailure():void 
   	{
   		var test : TestCase = new FailureTestCase( "testFailure" )
   		test.runWithResult( result );
   		Assert.assertEquals("failure", 1, failureCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("e
 rror", 0, errorCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testStartStop():void 
   	{
   		var test : TestCase = new SuccessTestCase( "testSuccess" )
   		test.runWithResult( result );
   		Assert.assertEquals("start", 1, startCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("error", 0, errorCount);
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	private var result : TestResult;
   	private var startCount : Number;
   	private var endCount : Number;
   	private var failureCount : Number;
   	private var errorCount : Number;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestListener extends TestCase implements TestListener
   {
       public function TestTestListener(name : String = null)
       {
           super(name);
       }
   
   	public function addError( test : Test, e : Error ) : void
   	{
   		errorCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function addFailure( test : Test , e : AssertionFailedError ) : void
   	{
   		failureCount++;
   	}
   	
   //------------------------------------------------------------------------------
   
   	public function startTest( test : Test ) : void 
   	{
   		startCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function endTest( test : Test ) : void 
   	{
   		endCount++;
   	}
   	
   //----------------------------------------------------------------------
 --------
   
   	override public function setUp() : void
   	{
   		result = new TestResult();
   		result.addListener( TestListener(this) );
   	
   		startCount = 0;
   		endCount = 0;
   		failureCount = 0;
   		errorCount = 0;
   	}
   	
   //------------------------------------------------------------------------------
   	
   	public function testError():void 
   	{
   		var test : TestCase = new ErrorTestCase( "throwError" )
   		test.runWithResult( result );
   		Assert.assertEquals("error", 1, errorCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testFailure():void 
   	{
   		var test : TestCase = new FailureTestCase( "testFailure" )
   		test.runWithResult( result );
   		Assert.assertEquals("failure", 1, failureCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("er
 ror", 0, errorCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testStartStop():void 
   	{
   		var test : TestCase = new SuccessTestCase( "testSuccess" )
   		test.runWithResult( result );
   		Assert.assertEquals("start", 1, startCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("error", 0, errorCount);
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	private var result : TestResult;
   	private var startCount : Number;
   	private var endCount : Number;
   	private var failureCount : Number;
   	private var errorCount : Number;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
index 62b58c0..7b7a81c 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   
   public class ValueEvent extends Event
   {
       public function ValueEvent(value : String)
       {
           super("value");
           this.value = value;
       }
   
       public var value : String;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   
   public class ValueEvent extends Event
   {
       public function ValueEvent(value : String)
       {
           super("value");
           this.value = value;
       }
   
       public var value : String;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
index 5130393..37422bc 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
@@ -1,33 +1,4 @@
-/*
-	Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
-
-package flexUnitTests.flexUnit1.framework
+package flexUnitTests.flexUnit1.framework
 {
 
    import flexunit.framework.TestSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
index b2fb01e..1ef7756 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
@@ -1,3 +1,159 @@
-/*
	Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTAB
 ILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
*/

package flexUnitTests.flexUnit1.framework
{

   import flexunit.framework.*;
   
   public class AsynchronousTestCase extends TestCase
   {   
       public function AsynchronousTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           dispatcher = new AsynchronousValueDispatcher();
       }
   
       public functi
 on testInTimePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function testInTimeFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
       }
   
       public function testInTimeError() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchError(TIME_PASS);
       }
   
       public function testTooLatePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function testTooLateFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
   
         dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
       }
   
       public function testTooLateError() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchError(TIME_FAIL);
       }
   
       public function handleValue(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
       }
   
-   
-       public function testSecondInTimePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassInTime, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleFirstValueThenPassInTime(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
       }
   
       public function testSecondInTimeFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailInTime, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleFirstValueThenFailInTime(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEqu
 als(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function testSecondTooLatePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassTooLate, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleFirstValueThenPassTooLate(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
       }
   
       public function testSecondTooLateFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailTooLate, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleF
 irstValueThenFailTooLate(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutPass));
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function handleTimeoutPass(expected : String) : void
       {
           //do nothing, this should turn into a pass
       }
   
       public function testTimeoutFunctionFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutFail));
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function handleTimeoutFail(expected : String) : 
 void
       {
           fail("async method not called in time");
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
           dispatcher.dispatchValue(VALUE_1, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
           dispatcher.dispatchValue(VALUE_2, 0);
       }
   
       private var dispatcher : AsynchronousValueDispatcher;
   
       private static var VALUE_1 : String = "value1";
       private static var VALUE_2 : String = "value2";
       public static var TIME_PASS : int = 50;
       public static var TIME_FAIL : int = 250;
       public static var TIME_SYNC : int = 100;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
+{
+
+   import flexunit.framework.*;
+   
+   public class AsynchronousTestCase extends TestCase
+   {   
+       public function AsynchronousTestCase(name : String)
+       {
+           super(name);
+       }
+   
+       override public function setUp() : void
+       {
+           dispatcher = new AsynchronousValueDispatcher();
+       }
+   
+       public function testInTimePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function testInTimeFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
+       }
+   
+       public function testInTimeError() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchError(TIME_PASS);
+       }
+   
+       public function testTooLatePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function testTooLateFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
+       }
+   
+       public function testTooLateError() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchError(TIME_FAIL);
+       }
+   
+       public function handleValue(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+       }
+   
+   
+       public function testSecondInTimePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassInTime, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenPassInTime(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
+       }
+   
+       public function testSecondInTimeFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailInTime, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenFailInTime(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function testSecondTooLatePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassTooLate, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenPassTooLate(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
+       }
+   
+       public function testSecondTooLateFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailTooLate, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenFailTooLate(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function testTimeoutFunctionPass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutPass));
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function handleTimeoutPass(expected : String) : void
+       {
+           //do nothing, this should turn into a pass
+       }
+   
+       public function testTimeoutFunctionFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutFail));
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function handleTimeoutFail(expected : String) : void
+       {
+           fail("async method not called in time");
+       }
+   
+       public function testNotReallyAsynchronousPass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
+           dispatcher.dispatchValue(VALUE_1, 0);
+       }
+   
+       public function testNotReallyAsynchronousFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
+           dispatcher.dispatchValue(VALUE_2, 0);
+       }
+   
+       private var dispatcher : AsynchronousValueDispatcher;
+   
+       private static var VALUE_1 : String = "value1";
+       private static var VALUE_2 : String = "value2";
+       public static var TIME_PASS : int = 50;
+       public static var TIME_FAIL : int = 250;
+       public static var TIME_SYNC : int = 100;
+   }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
index 071e7c1..d1e60c1 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
@@ -1,3 +1,58 @@
-/*
-	Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILI
 TY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.EventDispatcher;
   
   import flash.utils.Timer;
   
   public class AsynchronousValueDispatcher extends EventDispatcher
   {
       public function AsynchronousValueDispatcher()
       {
           timer = new Timer(100, 1);
           timer.addEventListener("timer", timeout);
       }
   
       public function dispatchValue(value : String, time : int) : void
       {
           this.value = value;
           if (time > 0)
           {
               //BUG 114824 WORKAROUND - This bug is marked as fixed, but removing
               //the workaround causes the unit tests to fail. Need to look into this.
               timer = new Timer(time, 1);
               timer.addEventListener("timer", timeout);
               //END WORKAROUND
               //timer.delay = time;
               timer.start();
           }
           else
           {
               timeout(null);
           }
 
       }
   
       public function dispatchError(time : int) : void
       {
           dispatchValue("ERROR", time);
       }
   
   
       public function timeout(event : Event) : void
       {
           if (value == "ERROR")
           {
               throw new Error();
           }
           else
           {
               dispatchEvent(new ValueEvent(value));
           }
       }
   
       private var timer : Timer;
       private var value : String;
   
   }

}
+package flexUnitTests.flexUnit1.framework
+{
+   import flash.events.Event;
+   import flash.events.EventDispatcher;
+   
+   import flash.utils.Timer;
+   
+   public class AsynchronousValueDispatcher extends EventDispatcher
+   {
+       public function AsynchronousValueDispatcher()
+       {
+           timer = new Timer(100, 1);
+           timer.addEventListener("timer", timeout);
+       }
+   
+       public function dispatchValue(value : String, time : int) : void
+       {
+           this.value = value;
+           if (time > 0)
+           {
+               //BUG 114824 WORKAROUND - This bug is marked as fixed, but removing
+               //the workaround causes the unit tests to fail. Need to look into this.
+               timer = new Timer(time, 1);
+               timer.addEventListener("timer", timeout);
+               //END WORKAROUND
+               //timer.delay = time;
+               timer.start();
+           }
+           else
+           {
+               timeout(null);
+           }
+       }
+   
+       public function dispatchError(time : int) : void
+       {
+           dispatchValue("ERROR", time);
+       }
+   
+   
+       public function timeout(event : Event) : void
+       {
+           if (value == "ERROR")
+           {
+               throw new Error();
+           }
+           else
+           {
+               dispatchEvent(new ValueEvent(value));
+           }
+       }
+   
+       private var timer : Timer;
+       private var value : String;
+   
+   }
+
+}

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
index 0418636..d9ac0b7 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
@@ -1,5 +1,20 @@
-/*
-	Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILI
 TY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class ErrorTestCase extends TestCase
   {
   
       public function ErrorTestCase(name : String):void
       {
           super(name);
       }
   
       public function throwError():void
       {
-          assertTrue( true ) 
          
-          throw new Error();
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
+{
+   import flexunit.framework.*;
+   
+   public class ErrorTestCase extends TestCase
+   {
+   
+       public function ErrorTestCase(name : String):void
+       {
+           super(name);
+       }
+   
+       public function throwError():void
+       {
+          assertTrue( true ) 
+          
+          throw new Error();
+       }
+   }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
index 064ce39..d22fe0d 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class FailureTestCase extends TestCase
   {
       public function FailureTestCase(name : String):void
       {
           super(name);
       }
   
       public function testFailure():void
       {
           fail("intentional failure");
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class FailureTestCase extends TestCase
   {
       public function FailureTestCase(name : String):void
       {
           super(name);
       }
   
       public function testFailure():void
       {
           fail("intentional failure");
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
index 5985d10..f6b7ed5 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTearDownTestCase extends TearDownTestCase
   {
       public function SetupErrorTearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();
       }
   
       public function testSuccess():void
       {
          assertTrue( true );
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTearDownTestCase extends TearDownTestCase
   {
       public function SetupErrorTearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();
       }
   
       public function testSuccess():void
       {
          assertTrue( true );
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
index 59ceeb9..53e77ee 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTestCase extends ErrorTestCase
   {
   
       public function SetupErrorTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();    
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTestCase extends ErrorTestCase
   {
   
       public function SetupErrorTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();    
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
index f35bd45..d81f74d 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANT
 ABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SuccessTestCase extends TestCase
   {
       public function SuccessTestCase(name : String):void
       {
           super(name);
       }
   
       public function testSuccess():void
       {
           expectedResult = true;
           
           assertTrue( expectedResult );
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SuccessTestCase extends TestCase
   {
       public function SuccessTestCase(name : String):void
       {
           super(name);
       }
   
       public function testSuccess():void
       {
           expectedResult = true;
           
           assertTrue( expectedResult );
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
index 52826c4..2b98218 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownErrorTestCase extends TearDownTestCase
   {
   
       public function TearDownErrorTestCase(name : String)
       {
           super(name);
       }
   
       public function testSuccess() : void
       {
          assertTrue( true );
       }
   
       override public function tearDown() : void
       {
           super.tearDown();
           throw new Error("tearDown");
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownErrorTestCase extends TearDownTestCase
   {
   
       public function TearDownErrorTestCase(name : String)
       {
           super(name);
       }
   
       public function testSuccess() : void
       {
          assertTrue( true );
       }
   
       override public function tearDown() : void
       {
           super.tearDown();
           throw new Error("tearDown");
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
index fa7563f..4b52d56 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANT
 ABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/
package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownTestCase extends ErrorTestCase
   {
   
       public function TearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function tearDown() : void
       {
           expectedResult = true;
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownTestCase extends ErrorTestCase
   {
   
       public function TearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function tearDown() : void
       {
           expectedResult = true;
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
index f0c5e02..447ff89 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
@@ -1,33 +1,4 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
-
-package flexUnitTests.flexUnit1.framework
+package flexUnitTests.flexUnit1.framework
 {
    import flexunit.framework.*;
    

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
index 2092002..34ac69e 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANT
 ABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/
package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.TimerEvent;
   import flash.utils.Timer;
   
   import flexunit.framework.Assert;
   import flexunit.framework.TestCase;
   import flexunit.framework.TestResult;

   public class TestAsynchronous extends TestCase
   {
       public function TestAsynchronous(name : String = null)
       {
           super(name);
       }
   
       public function testInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a 
 dialog
       //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestInTimeError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLatePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dialog
  
      //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestTooLateError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testSecondInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLatePass() : void
       {
           var test : TestCase = new
  AsynchronousTestCase("testSecondTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testTimeoutFunctionFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           var test : Tes
 tCase = new AsynchronousTestCase("testNotReallyAsynchronousPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testNotReallyAsynchronousFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function shouldBeRun(event : Event, passedData : Object) : void
       {
           var result : TestResult = passedData.result;
           var expectedRun : int = passedData.expectedRun;
           var expectedFail : int = passedData.expectedFail;
           var expectedError : int = passedData.expectedError;
   
           Assert.assertEquals("result.runCount() is not correct", expectedRun, result.runCount());
           Assert.assertEquals("result.failureCount() is not correct",expectedFail, result.failureCount());
           Assert.assertEqu
 als("result.errorCount() is not correct", expectedError, result.errorCount());
       }
   
       private function initAsync(result : TestResult, expectedRun : int, expectedFail : int, expectedError : int):void
       {
           var data : Object = new Object();
           data.result = result;
           data.expectedRun = expectedRun;
           data.expectedFail = expectedFail;
           data.expectedError = expectedError;
           var t : Timer = new Timer(1000, 1);
           var helper : Function = addAsync(shouldBeRun, 1500, data, function():void { fail('shouldBeRun did not fire')} );
           t.addEventListener( TimerEvent.TIMER, helper );
           t.start();
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.TimerEvent;
   import flash.utils.Timer;
   
   import flexunit.framework.Assert;
   import flexunit.framework.TestCase;
   import flexunit.framework.TestResult;

   public class TestAsynchronous extends TestCase
   {
       public function TestAsynchronous(name : String = null)
       {
           super(name);
       }
   
       public function testInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dia
 log
       //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestInTimeError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLatePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dialog
     
   //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestTooLateError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testSecondInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLatePass() : void
       {
           var test : TestCase = new As
 ynchronousTestCase("testSecondTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testTimeoutFunctionFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           var test : TestCa
 se = new AsynchronousTestCase("testNotReallyAsynchronousPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testNotReallyAsynchronousFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function shouldBeRun(event : Event, passedData : Object) : void
       {
           var result : TestResult = passedData.result;
           var expectedRun : int = passedData.expectedRun;
           var expectedFail : int = passedData.expectedFail;
           var expectedError : int = passedData.expectedError;
   
           Assert.assertEquals("result.runCount() is not correct", expectedRun, result.runCount());
           Assert.assertEquals("result.failureCount() is not correct",expectedFail, result.failureCount());
           Assert.assertEquals
 ("result.errorCount() is not correct", expectedError, result.errorCount());
       }
   
       private function initAsync(result : TestResult, expectedRun : int, expectedFail : int, expectedError : int):void
       {
           var data : Object = new Object();
           data.result = result;
           data.expectedRun = expectedRun;
           data.expectedFail = expectedFail;
           data.expectedError = expectedError;
           var t : Timer = new Timer(1000, 1);
           var helper : Function = addAsync(shouldBeRun, 1500, data, function():void { fail('shouldBeRun did not fire')} );
           t.addEventListener( TimerEvent.TIMER, helper );
           t.start();
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
index 70f2d1e..e2831a0 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
@@ -1,32 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
-
 package flexUnitTests.flexUnit1.framework
 {
    import flash.events.Event;


[41/41] git commit: updated clean task and sourceUrl of mockolate swc

Posted by cz...@apache.org.
updated clean task and sourceUrl of mockolate swc


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/0f9cd889
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/0f9cd889
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/0f9cd889

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 0f9cd8890a44d1c903f18ddfc86e36969422c104
Parents: 47736bc
Author: cyrill.zadra <cy...@gmail.com>
Authored: Wed May 22 21:46:14 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Wed May 22 21:46:14 2013 +0800

----------------------------------------------------------------------
 FlexUnit4Test/build.xml     |    1 -
 FlexUnit4Test/downloads.xml |    3 ++-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f9cd889/FlexUnit4Test/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/build.xml b/FlexUnit4Test/build.xml
index 8f5e456..21be420 100644
--- a/FlexUnit4Test/build.xml
+++ b/FlexUnit4Test/build.xml
@@ -137,7 +137,6 @@
       <delete>
          <fileset dir="${lib.loc}">
             <exclude name="mock-as3.swc" />
-            <exclude name="mockolate*.swc" />
             <exclude name="build/saxon*.jar" />
          </fileset>
       </delete>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f9cd889/FlexUnit4Test/downloads.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/downloads.xml b/FlexUnit4Test/downloads.xml
index 6dd2620..a0693fb 100644
--- a/FlexUnit4Test/downloads.xml
+++ b/FlexUnit4Test/downloads.xml
@@ -60,6 +60,7 @@
         <delete includeEmptyDirs="true" failonerror="false">
             <fileset dir="${download.dir}">
              	<include name="hamcrest*/**"/>
+            	<include name="mockolate*/**"/>
 			</fileset>
         </delete>
     </target>
@@ -253,7 +254,7 @@
 	        description="Downloads and copies mockolate to the lib directory.">
 	        <echo message="Obtaining lib/mockolate-0.9.5.swc"/>
 	        <antcall target="download-zip">
-	          <param name="srcUrl" value="https://github.com/downloads/drewbourne/mockolate"/>
+	          <param name="srcUrl" value="http://cloud.github.com/downloads/drewbourne/mockolate"/>
 	          <param name="zipFile" value="mockolate-0.9.5.zip"/>
 	          <param name="srcJarPath" value="mockolate-0.9.5/mockolate-0.9.5.swc"/>
 	          <param name="md5" value="b73fe1bb5f443993adcf8b274f6a48b2"/>


[04/41] removed digital primates copyright header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
index 2b6082f..7a03ad5 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import flash.events.Event;
 	import flash.net.Responder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
index 868c62d..cefc41d 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
index 56e097e..46a186f 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import org.flexunit.internals.runners.statements.AsyncStatementBase;
 	import org.flexunit.internals.runners.statements.IAsyncStatement;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
index 7c38955..ab98106 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
index 36ce6d6..fc24fc2 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
index fc3f138..d5316b1 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	
 	import org.flexunit.token.AsyncTestToken;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
index bf8399f..a67cf75 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import org.flexunit.internals.runners.statements.AsyncStatementBase;
 	import org.flexunit.internals.runners.statements.IAsyncStatement;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
index 0dc7d65..54d0f44 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import org.flexunit.runners.model.FrameworkMethod;
 	import org.flexunit.token.AsyncTestToken;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
index 3b775a8..92eaf06 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements
 {
 	import org.flexunit.async.AsyncLocator;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
index 438919c..b4d2583 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements
 {
 	import org.flexunit.async.AsyncLocator;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
index 81f9901..127fe80 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import org.flexunit.internals.runners.model.MultipleFailureException;
 	import org.flexunit.token.AsyncTestToken;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
index e6a11a2..04c4674 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import org.flexunit.async.AsyncLocator;
 	import org.flexunit.constants.AnnotationConstants;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
index 1708bef..c6af8e6 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import org.flexunit.async.AsyncLocator;
 	import org.flexunit.constants.AnnotationConstants;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
index 11e68ef..6fc1caf 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import org.flexunit.token.AsyncTestToken;
 	import org.flexunit.token.ChildResult;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
index cd5dab1..3d6dcf5 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements
 {
 	import org.flexunit.runners.model.FrameworkMethod;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
index 7e6bdff..fa5f5f9 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 
 package org.flexunit.internals.runners.statements {
 	import flash.display.Stage;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
index 4ded408..2b8cc2b 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as b/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
index 4604dd4..95164d9 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.watcher {
 	import flash.display.DisplayObject;
 	import flash.display.Stage;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as b/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
index 9903445..7fe4060 100644
--- a/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
+++ b/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.reporting {
 	import flash.utils.getQualifiedClassName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/Description.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Description.as b/FlexUnit4/src/org/flexunit/runner/Description.as
index 97ef06b..92959cc 100644
--- a/FlexUnit4/src/org/flexunit/runner/Description.as
+++ b/FlexUnit4/src/org/flexunit/runner/Description.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner {
 	import flash.utils.getQualifiedClassName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/Descriptor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Descriptor.as b/FlexUnit4/src/org/flexunit/runner/Descriptor.as
index 2836911..efbb7ef 100644
--- a/FlexUnit4/src/org/flexunit/runner/Descriptor.as
+++ b/FlexUnit4/src/org/flexunit/runner/Descriptor.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as b/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
index d984e91..c1e029f 100644
--- a/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
+++ b/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner {
 	import flash.display.DisplayObjectContainer;
 	import flash.display.LoaderInfo;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/IDescribable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IDescribable.as b/FlexUnit4/src/org/flexunit/runner/IDescribable.as
index 22f5baa..6bafd5d 100644
--- a/FlexUnit4/src/org/flexunit/runner/IDescribable.as
+++ b/FlexUnit4/src/org/flexunit/runner/IDescribable.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner {
 	/**
 	 * The <code>IDescribable</code> interface is to be used by classes that can produce an

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/IDescription.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IDescription.as b/FlexUnit4/src/org/flexunit/runner/IDescription.as
index a7abeec..ddb6eb8 100644
--- a/FlexUnit4/src/org/flexunit/runner/IDescription.as
+++ b/FlexUnit4/src/org/flexunit/runner/IDescription.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/IRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IRequest.as b/FlexUnit4/src/org/flexunit/runner/IRequest.as
index bbbc3a3..4f5f7e6 100644
--- a/FlexUnit4/src/org/flexunit/runner/IRequest.as
+++ b/FlexUnit4/src/org/flexunit/runner/IRequest.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner {
 	import org.flexunit.runner.manipulation.ISort;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/IRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IRunner.as b/FlexUnit4/src/org/flexunit/runner/IRunner.as
index d2e0998..232d49c 100644
--- a/FlexUnit4/src/org/flexunit/runner/IRunner.as
+++ b/FlexUnit4/src/org/flexunit/runner/IRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner
 {
 	import org.flexunit.runner.notification.IRunNotifier;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/Request.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Request.as b/FlexUnit4/src/org/flexunit/runner/Request.as
index 861e330..282aa46 100644
--- a/FlexUnit4/src/org/flexunit/runner/Request.as
+++ b/FlexUnit4/src/org/flexunit/runner/Request.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner {
 	import org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder;
 	import org.flexunit.internals.namespaces.classInternal;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/Result.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Result.as b/FlexUnit4/src/org/flexunit/runner/Result.as
index 21bba22..4648b54 100644
--- a/FlexUnit4/src/org/flexunit/runner/Result.as
+++ b/FlexUnit4/src/org/flexunit/runner/Result.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner {
 	import org.flexunit.internals.namespaces.classInternal;
 	import org.flexunit.runner.notification.RunListener;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as b/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
index abd5c81..0ed61f6 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.external {
 	import flex.lang.reflect.Field;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
index e576590..908e907 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.external {
 	/**
 	 * Extension to the IExternalDependencyLoader concept which allows a given class

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
index aea5aeb..875bff4 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.external {
 	/**
 	 * Allows the user to specify a static variable of type IExternalDependencyLoader. This class

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
index 0fbc3f3..49e95fa 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.external {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as b/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
index 92f1d7b..6591c19 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
index 7a66535..44cb00f 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation {
 	import org.flexunit.runner.IDescription;
 	import org.flexunit.runner.manipulation.sortingInheritance.ISortingInheritanceCache;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
index d2ae2c3..843aa79 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
index 451a7b7..c55458e 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
index 0017bb0..ad93626 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
index b6c2309..d4f565c 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation {
 	import org.flexunit.runner.IDescription;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as b/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
index 1ea730a..792e916 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
index db7bca5..e4611e0 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.metadata.MetaDataArgument;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
index 2144a4f..9459105 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
index 2fcfbf6..347b743 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.metadata.MetaDataArgument;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
index d2e860f..843ab51 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation
 {
 	import org.flexunit.runner.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
index 84e5ab8..49bc8c4 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 
 //This class is highly duplicated from OrderArgumentSorter and we should abstract common functionality
 package org.flexunit.runner.manipulation.fields {

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
index 76869f4..0ee6481 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation.filters {
 	import org.flexunit.runner.IDescription;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
index c03a8ea..6c6cee7 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation.sortingInheritance {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
index 6613873..7a43688 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.manipulation.sortingInheritance {
 	import org.flexunit.runner.IDescription;
 


[08/41] removed adobe copyright header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
index a71525e..865e047 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
@@ -1,4 +1,215 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCH
 ANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/
package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestCase extends TestCase
   {
       public function TestTestCase(name : String = null)
       {
           super(name);
       }
   
       public function testCaseToString() : void
       {
           Assert.assertEquals( "testCaseToString (flexUnitTests.flexUnit1.framework::TestTestCase)", toString() );
       }
   
   //------------------------------------------------------------------------------
   
       public function testError() : void
       {
           var error : ErrorTestCase = new ErrorTestCase("throwError");
           verifyError( error );
       }
   
   //------------------------------------------------------------------------------
   
       public function testRunAndTearDownFails() : void
       {
           var fails : TearDownErrorTestCase = new TearDownErrorTestCase("throwError");
           //MATT: because of the asynchronous support an error in tearDow
 n will now be an additional
           //error instead of overwriting the error that was thrown in the test run
           verifyError( fails, 2 );
           Assert.assertTrue( fails.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testSetupFails() : void
       {
           var fails : SetupErrorTestCase = new SetupErrorTestCase( "throwError" )
           verifyError( fails, 1 );
       }
   
   //------------------------------------------------------------------------------
   
       public function testSuccess() : void
       {
           var success : TestCase = new SuccessTestCase( "testSuccess" )
           verifySuccess( success );
       }
   
   //------------------------------------------------------------------------------
   
       public function testFailure() : void
       {
           var failure : TestCase = new FailureTestCase( "testFailure" )
           verifyFailure( fa
 ilure );
       }
   
   //------------------------------------------------------------------------------
   
       public function testTearDownAfterError() : void
       {
           var fails : TearDownTestCase = new TearDownTestCase("throwError");
           verifyError( fails );
           Assert.assertTrue( fails.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testTearDownFails() : void
       {
           var fails : TearDownErrorTestCase = new TearDownErrorTestCase( "testSuccess" )
           verifyError( fails );
       }
   
-   //------------------------------------------------------------------------------
   
-       public function testTearDownSetupFails() : void
       {
           var fails : SetupErrorTearDownTestCase = new SetupErrorTearDownTestCase("testSuccess");
           verifyError( fails );
           Assert.assertFalse( fails.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testWasRun() : void
       {
           var test : SuccessTestCase = new SuccessTestCase("testSuccess");
           test.run();
           Assert.assertTrue( test.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testExceptionRunningAndTearDown() : void
       {
           var t : TestCase = new TearDownErrorTestCase("testSuccess");
           var result : TestResult = new TestResult();
           t.runWithResult( result );
           var failure : TestFailure = TestFailure ( result.errorsIterator().next() );
           Asse
 rt.assertEquals( "tearDown", failure.thrownException().message );
       }
   
   //------------------------------------------------------------------------------
   
   //MATT: since the automatic test creation doesn't work anymore and we've verified other no-arg tests (in SuccessTestCase)
   //we should be cool without this one
   /*
       public function testNoArgTestCasePasses() : void
       {
           var t : Test = new TestSuite( NoArgTestCase );
           var result : TestResult = new TestResult();
           
           t.runWithResult(  result );
   
           Assert.assertEquals( 1, result.runCount() );
           Assert.assertEquals( 0, result.failureCount() );
           Assert.assertEquals( 0, result.errorCount() );
   
       }
   */
   
   //------------------------------------------------------------------------------
   
       public function testNamelessTestCase() : void
       {
           var test : TestCase = new TestCase();
           var result : TestRe
 sult = test.run();
           Assert.assertEquals( 
                     "result.runCount() is not correct", 
                     1, 
                     result.runCount() );
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     1, 
                     result.failureCount() );
           Assert.assertEquals( 
                     "result.errorCount() is not correct", 
                     0, 
                     result.errorCount()  );
           Assert.assertEquals( 
                     "No test method to run",
                     TestFailure( result.failuresIterator().next() ).thrownException().message );
           /*
           try
           {
               t.run();
               fail();
           }
           catch ( e: AssertionFailedError )
           {
           }
           */
       }
   
   //------------------------------------------------------------------------------
   
       private function ve
 rifyError( test : TestCase , errorCount : int = 1) : void
       {
           var result : TestResult = test.run();
           Assert.assertEquals( 
                     "result.runCount() is not correct", 
                     1, 
                     result.runCount() );
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     0, 
                     result.failureCount() );
           Assert.assertEquals( 
                     "result.errorCount() is not correct", 
                     errorCount, 
                     result.errorCount()  );
       }
       
   //------------------------------------------------------------------------------
   
       private function  verifyFailure( test : TestCase ) : void
       {
           var result : TestResult = test.run();
           Assert.assertEquals( 
                     "result.runCount() is not correct", 
                     1,  
                     result.runCount() )
 ;
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     1, 
                     result.failureCount()  );
           Assert.assertEquals(  
                     "result.errorCount() is not correct", 
                     0, 
                     result.errorCount() );
       }
   
   //------------------------------------------------------------------------------
   
       private function  verifySuccess( test : TestCase ) : void
       {
           var result : TestResult = test.run();
           Assert.assertEquals(  
                     "result.runCount() is not correct", 
                     1, 
                     result.runCount() );
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     0, 
                     result.failureCount() );
           Assert.assertEquals(   
                     "result.errorCount() is not correct", 
                     
 0, 
                     result.errorCount() );
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
+{
+   import flexunit.framework.*;
+   
+   public class TestTestCase extends TestCase
+   {
+       public function TestTestCase(name : String = null)
+       {
+           super(name);
+       }
+   
+       public function testCaseToString() : void
+       {
+           Assert.assertEquals( "testCaseToString (flexUnitTests.flexUnit1.framework::TestTestCase)", toString() );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testError() : void
+       {
+           var error : ErrorTestCase = new ErrorTestCase("throwError");
+           verifyError( error );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testRunAndTearDownFails() : void
+       {
+           var fails : TearDownErrorTestCase = new TearDownErrorTestCase("throwError");
+           //MATT: because of the asynchronous support an error in tearDown will now be an additional
+           //error instead of overwriting the error that was thrown in the test run
+           verifyError( fails, 2 );
+           Assert.assertTrue( fails.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testSetupFails() : void
+       {
+           var fails : SetupErrorTestCase = new SetupErrorTestCase( "throwError" )
+           verifyError( fails, 1 );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testSuccess() : void
+       {
+           var success : TestCase = new SuccessTestCase( "testSuccess" )
+           verifySuccess( success );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testFailure() : void
+       {
+           var failure : TestCase = new FailureTestCase( "testFailure" )
+           verifyFailure( failure );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testTearDownAfterError() : void
+       {
+           var fails : TearDownTestCase = new TearDownTestCase("throwError");
+           verifyError( fails );
+           Assert.assertTrue( fails.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testTearDownFails() : void
+       {
+           var fails : TearDownErrorTestCase = new TearDownErrorTestCase( "testSuccess" )
+           verifyError( fails );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testTearDownSetupFails() : void
+       {
+           var fails : SetupErrorTearDownTestCase = new SetupErrorTearDownTestCase("testSuccess");
+           verifyError( fails );
+           Assert.assertFalse( fails.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testWasRun() : void
+       {
+           var test : SuccessTestCase = new SuccessTestCase("testSuccess");
+           test.run();
+           Assert.assertTrue( test.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testExceptionRunningAndTearDown() : void
+       {
+           var t : TestCase = new TearDownErrorTestCase("testSuccess");
+           var result : TestResult = new TestResult();
+           t.runWithResult( result );
+           var failure : TestFailure = TestFailure ( result.errorsIterator().next() );
+           Assert.assertEquals( "tearDown", failure.thrownException().message );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+   //MATT: since the automatic test creation doesn't work anymore and we've verified other no-arg tests (in SuccessTestCase)
+   //we should be cool without this one
+   /*
+       public function testNoArgTestCasePasses() : void
+       {
+           var t : Test = new TestSuite( NoArgTestCase );
+           var result : TestResult = new TestResult();
+           
+           t.runWithResult(  result );
+   
+           Assert.assertEquals( 1, result.runCount() );
+           Assert.assertEquals( 0, result.failureCount() );
+           Assert.assertEquals( 0, result.errorCount() );
+   
+       }
+   */
+   
+   //------------------------------------------------------------------------------
+   
+       public function testNamelessTestCase() : void
+       {
+           var test : TestCase = new TestCase();
+           var result : TestResult = test.run();
+           Assert.assertEquals( 
+                     "result.runCount() is not correct", 
+                     1, 
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     1, 
+                     result.failureCount() );
+           Assert.assertEquals( 
+                     "result.errorCount() is not correct", 
+                     0, 
+                     result.errorCount()  );
+           Assert.assertEquals( 
+                     "No test method to run",
+                     TestFailure( result.failuresIterator().next() ).thrownException().message );
+           /*
+           try
+           {
+               t.run();
+               fail();
+           }
+           catch ( e: AssertionFailedError )
+           {
+           }
+           */
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       private function verifyError( test : TestCase , errorCount : int = 1) : void
+       {
+           var result : TestResult = test.run();
+           Assert.assertEquals( 
+                     "result.runCount() is not correct", 
+                     1, 
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     0, 
+                     result.failureCount() );
+           Assert.assertEquals( 
+                     "result.errorCount() is not correct", 
+                     errorCount, 
+                     result.errorCount()  );
+       }
+       
+   //------------------------------------------------------------------------------
+   
+       private function  verifyFailure( test : TestCase ) : void
+       {
+           var result : TestResult = test.run();
+           Assert.assertEquals( 
+                     "result.runCount() is not correct", 
+                     1,  
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     1, 
+                     result.failureCount()  );
+           Assert.assertEquals(  
+                     "result.errorCount() is not correct", 
+                     0, 
+                     result.errorCount() );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       private function  verifySuccess( test : TestCase ) : void
+       {
+           var result : TestResult = test.run();
+           Assert.assertEquals(  
+                     "result.runCount() is not correct", 
+                     1, 
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     0, 
+                     result.failureCount() );
+           Assert.assertEquals(   
+                     "result.errorCount() is not correct", 
+                     0, 
+                     result.errorCount() );
+       }
+   }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
index 590068e..f9bc3b2 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCH
 ANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestListener extends TestCase implements TestListener
   {
       public function TestTestListener(name : String = null)
       {
           super(name);
       }
   
   	public function addError( test : Test, e : Error ) : void
   	{
   		errorCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function addFailure( test : Test , e : AssertionFailedError ) : void
   	{
   		failureCount++;
   	}
   	
   //------------------------------------------------------------------------------
   
   	public function startTest( test : Test ) : void 
   	{
   		startCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function endTest( test : Test ) : void 
   	{
   		endCount++;
   	}
   	
   //---------------------------------------------------------------------
 ---------
   
   	override public function setUp() : void
   	{
   		result = new TestResult();
   		result.addListener( TestListener(this) );
   	
   		startCount = 0;
   		endCount = 0;
   		failureCount = 0;
   		errorCount = 0;
   	}
   	
   //------------------------------------------------------------------------------
   	
   	public function testError():void 
   	{
   		var test : TestCase = new ErrorTestCase( "throwError" )
   		test.runWithResult( result );
   		Assert.assertEquals("error", 1, errorCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testFailure():void 
   	{
   		var test : TestCase = new FailureTestCase( "testFailure" )
   		test.runWithResult( result );
   		Assert.assertEquals("failure", 1, failureCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("e
 rror", 0, errorCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testStartStop():void 
   	{
   		var test : TestCase = new SuccessTestCase( "testSuccess" )
   		test.runWithResult( result );
   		Assert.assertEquals("start", 1, startCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("error", 0, errorCount);
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	private var result : TestResult;
   	private var startCount : Number;
   	private var endCount : Number;
   	private var failureCount : Number;
   	private var errorCount : Number;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestListener extends TestCase implements TestListener
   {
       public function TestTestListener(name : String = null)
       {
           super(name);
       }
   
   	public function addError( test : Test, e : Error ) : void
   	{
   		errorCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function addFailure( test : Test , e : AssertionFailedError ) : void
   	{
   		failureCount++;
   	}
   	
   //------------------------------------------------------------------------------
   
   	public function startTest( test : Test ) : void 
   	{
   		startCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function endTest( test : Test ) : void 
   	{
   		endCount++;
   	}
   	
   //----------------------------------------------------------------------
 --------
   
   	override public function setUp() : void
   	{
   		result = new TestResult();
   		result.addListener( TestListener(this) );
   	
   		startCount = 0;
   		endCount = 0;
   		failureCount = 0;
   		errorCount = 0;
   	}
   	
   //------------------------------------------------------------------------------
   	
   	public function testError():void 
   	{
   		var test : TestCase = new ErrorTestCase( "throwError" )
   		test.runWithResult( result );
   		Assert.assertEquals("error", 1, errorCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testFailure():void 
   	{
   		var test : TestCase = new FailureTestCase( "testFailure" )
   		test.runWithResult( result );
   		Assert.assertEquals("failure", 1, failureCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("er
 ror", 0, errorCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testStartStop():void 
   	{
   		var test : TestCase = new SuccessTestCase( "testSuccess" )
   		test.runWithResult( result );
   		Assert.assertEquals("start", 1, startCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("error", 0, errorCount);
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	private var result : TestResult;
   	private var startCount : Number;
   	private var endCount : Number;
   	private var failureCount : Number;
   	private var errorCount : Number;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
index 62b58c0..7b7a81c 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   
   public class ValueEvent extends Event
   {
       public function ValueEvent(value : String)
       {
           super("value");
           this.value = value;
       }
   
       public var value : String;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   
   public class ValueEvent extends Event
   {
       public function ValueEvent(value : String)
       {
           super("value");
           this.value = value;
       }
   
       public var value : String;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
index 78665fc..5cb174f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
@@ -1 +1 @@
-<?xml version="1.0" encoding="utf-8"?>

<!--
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-->

<mx:Panel
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns="*"
   xmlns:data="org.flexunit.flexui.data.*"
   xmlns:controls="org.flexunit.flexui.controls.*"
   styleName="mainPanel"
   width="100%"
   height="100%"
   minHeight="500"
   minWidth="850"
   verticalScrollPolicy="off"
   horizontalScrollPolicy="off"
   modalTransparencyBlur="0"
   
 modalTransparency="0"
   implements="org.flexunit.runner.notification.ITemporalRunListener"
   creationComplete="handleCreationComplete()" >

   <mx:Metadata>
      [Event( name="testsComplete", type="org.flexunit.flexui.event.TestsCompleteEvent")]
   </mx:Metadata>
	<mx:Style>
		@font-face {
			font-family: "Myriad Pro SemiCond";
			src: url("/fonts/fonts.swf");
		}
		
		/* Font for anything else */
		@font-face {
			font-family: "Myriad Pro";
			src: url("/fonts/fonts.swf");
		}
		
		@font-face {
			font-family: "Myriad Pro";
			font-weight: bold;
			src: url("/fonts/fonts.swf");
		}
		
		/* Class-selectors are the only way to apply styles to components */
		.flexUnitApplication {
			backgroundColor: #3872b2;
			backgroundGradientColors: #3872b2, #0c1a3d;
			backgroundGradientAlphas: 1, 1;
			themeColor: #ffffff;
			color: #444444;
			fontFamily: "Myriad Pro";
			fontSize: 12;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
			
 modal-transparency-blur: 0;
			modal-transparency: 0;   
		}
		
		.myToolTip {
			fontFamily: "Myriad Pro";
			background-color: #3872b2;
			leading: 5;
		}
		
		.flexUnitVBox {
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitScrollBar
		{
			downArrowDisabledSkin: Embed(source="/skins/VScrollBar_downArrowDisabledSkin.png");
			downArrowDownSkin: Embed(source="/skins/VScrollBar_downArrowDownSkin.png");
			downArrowOverSkin: Embed(source="/skins/VScrollBar_downArrowOverSkin.png");
			downArrowUpSkin: Embed(source="/skins/VScrollBar_downArrowUpSkin.png");
			thumbIcon: Embed(source="/skins/VScrollBar_thumbIcon.png");
			trackSkin: Embed(source="/skins/VScrollBar_trackSkin.png");
			upArrowDisabledSkin: Embed(source="/skins/VScrollBar_upArrowDisabledSkin.png");
			upArrowDownSkin: Embed(source="/skins/VScrollBar_upArrowDownSkin.png");
			upArrowOverSkin: Embed(source="/skins/VScrollBar_upArrowOverSkin.png");
			upA
 rrowUpSkin: Embed(source="/skins/VScrollBar_upArrowUpSkin.png");
			thumbDownSkin: Embed(
				source="/skins/VScrollBar_thumbDownSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbOverSkin: Embed(
				source="/skins/VScrollBar_thumbOverSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbUpSkin: Embed(
				source="/skins/VScrollBar_thumbUpSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
		}
		
		.flexUnitDataGrid {
			alternatingItemColors: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
		}
		
		.flexUnitSlider {
			themeColor: #2863b4;
		}
		
		.flexUnitTree {
			alternatingItemColors: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
 
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.mainPanel {
			header-height: 0;
			vertical-gap: 2;
			borderSkin: Embed( 
				source="/skins/Panel_borderSkin.png", 
				scaleGridLeft="12", scaleGridTop="31", 
				scaleGridRight="265", scaleGridBottom="189" );	
			padding-top: 20;
			padding-left: 8;
			padding-right: 8;
		}
		
		.flexUnitTextInput {
			themeColor: #ffffff;
		}
		
		.flexUnitTextAreaWithBorder {
			borderSkin: Embed(
				source="/skins/TextArea_borderSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="150", scaleGridBottom="18" );
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitTextArea {
			borderStyle: none;
			backgroundAlpha: 0;
 			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.panelTitleStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 24;
			textIndent: 20;
		}
		
		.panelTitleSubStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 16;
		}
		
		.flexUnitHRule {
			strokeColor: #b9b9b9;
			strokeWidth: 2;
			shadowColor: #FFFFFF; 
		}
		
		.h1 {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 18;
		}
		
		.h2 {
			fontSize: 13;
		}
		
		.flexUnitComboBox {
			upSkin: Embed(
				source="/skins/ComboBox_upSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			overSkin: Embed(
				source="/skins/ComboBox_overSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			downSkin: Embed(
				source="/skins/ComboBox_downSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
 				scaleGridRight="64", scaleGridBottom="18" );
			disabledSkin: Embed(
				source="/skins/ComboBox_disabledSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			themeColor: #2863b4;
		}
		
		.flexUnitProgressBar
		{
			barColor: #51C148;
			trackSkin: Embed(
				source="/skins/ProgressBar_trackSkin.png",
				scaleGridLeft="1", scaleGridTop="0", 
				scaleGridRight="149", scaleGridBottom="3" );
			trackHeight: 11;
		}
		
		.flexUnitForm {
			paddingTop: 0;
			paddingBottom: 0;
			paddingLeft: 0;
			paddingRight: 0;
			verticalGap: -2;
		}
		
		.flexUnitFormItemLabel {
			color: #777777;
		}
		
		.flexUnitFormItemValue {
			color: #444444;
		}
		
		.flexUnitButtonBar
		{
			horizontalGap: -1;
			firstButtonStyleName: "firstButtonBarButton";
			lastButtonStyleName: "lastButtonBarButton";
		}
		
		.firstButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_disabledSkin.png",
				scaleGridLeft="6", scaleGr
 idTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedDisabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Embed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarFirstButton_
 selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarFirstButton_upSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.lastButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			se
 lectedDownSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarLastButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarLastButton_upSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.flexUnitControlBar {
			paddingTop: 5;
			paddingBottom: 2;
			paddingLeft: 4;
			paddingRight: 12;
			borderSkin: Embed(
				source="/skins/Panel_controlBarBackgroundSkin.png",
				scaleGridLeft="8", scaleGridTop="1", 
				scaleGridRight="270", scaleGridBottom="17" );
		}
	</mx:Style>
	   
   <mx:Script>
 
      <![CDATA[
		  import flash.net.navigateToURL;
		  
		  import mx.controls.ToolTip;
		  import mx.controls.listClasses.ListBase;
		  import mx.core.ScrollPolicy;
		  import mx.managers.ToolTipManager;
		  
		  import org.flexunit.Assert;
		  import flexunit.framework.Assert;
		  import org.flexunit.flexui.controls.FlexUnitLabels;
		  import org.flexunit.flexui.data.TestFunctionRowData;
		  import org.flexunit.flexui.event.TestsCompleteEvent;
		  import org.flexunit.runner.Description;
		  import org.flexunit.runner.Descriptor;
		  import org.flexunit.runner.FlexUnitCore;
		  import org.flexunit.runner.IDescription;
		  import org.flexunit.runner.Result;
		  import org.flexunit.runner.notification.Failure;

         public var test : *;// TODO: [XB] was  Test;
		
		
		/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
		*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
		*
   successes are both valid cases for a finished test.  With this variable, we can now prevent counting
		*  finished failures as successes.
		*/
		private var lastFailedTest:IDescription;
         private function handleCreationComplete() : void
         {
            ToolTip.maxWidth = 900;
            rightHandSide.model = model;
            leftHandSide.model = model;

            model.filterSectionEnabled = false;
         }

         public function startTest() : void
         {
            // if( test != null )
            {
               // model.totalTests = test.countTestCases(); // TODO: [XB] reenable this

               model.launchTests();

               rightHandSide.launchTests();
               leftHandSide.launchTests();
            }
         }

         private function addTestToList(
                     description : IDescription,
                     failure : Failure = null,
                     ignored : Boolean = false,
					 assertionsMade: uint= 0 ) : v
 oid
         {
               var rowAdded : TestFunctionRowData;

               rowAdded = model.addTestRowToHierarchicalList( description, failure, ignored, lastRunTime, assertionsMade );
               
               leftHandSide.testCasesContainer.allTestsHierarchyTree.verticalScrollPosition 
                     = leftHandSide.testCasesContainer.allTestsHierarchyTree.maxVerticalScrollPosition;
               
               /*if( ! success )
               {
                  model.rowSelected = rowAdded;
//               }*/
         }

         //---------------------------------------------------------------------
         // IFlexWriter Methods
         //---------------------------------------------------------------------
		public function testRunStarted( description:IDescription ):void {
			model.totalTests = description.testCount;
			this.startTest();
		}
		
		public function testRunFinished( result:Result ):void {
			rightHandSide.onAllTestsEnd();
            leftHan
 dSide.onAllTestsEnd();

            dispatchEvent( new TestsCompleteEvent() );
		}
		
		private var lastRunTime:Number = 0;
		public function testStarted( description:IDescription ):void {
		}
	
		public function testFinished( description:IDescription ):void {
			if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               model.numTestsRun++;
               /* JT 5/28/09 - added this conditional to handle bugreport FXU-38, the testFinished method of 
               *  this class mistakenly assumed that any test which finished was successful.  This is not the 
               *  case, as failures and successes are both valid cases for a finished test.  
			   */
               if(!lastFailedTest || description.displayName != lastFailedTest.displayName){
				   var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
	               addTestToList( description, null, false, totalAssertions );
	    
        }

               rightHandSide.onTestEnd();
               
               //removed until we can make this work correctly across all cases
               rightHandSide.selectedTestCaseForm.assertionsPerTest.invalidateProperties();
            }
		}
	
		public function testFailure( failure:Failure ):void {
			/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
			*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
			*  successes are both valid cases for a finished test.  With this variable, we can now prevent counting
			*  finished failures as successes.
			*/
			lastFailedTest = failure.description;
			model.addFailure();

			var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
            addTestToList( failure.description, failure, false, totalAssertions );

            rightHandSide.selectedTestCaseViewStack.selec
 tedIndex = 1;
		}
	
		public function testAssumptionFailure( failure:Failure ):void {
		}
	
		/**
		 * Called when a test will not be run, generally because a test method is annotated 
		 * with {@link org.junit.Ignore}.
		 * 
		 * @param description describes the test that will not be run
		 */
		public function testIgnored( description:IDescription ):void {
			model.addIgnore();

            addTestToList( description, null, true );
		}
		
		public function testTimed( description:IDescription, runTime:Number ):void {
			lastRunTime = runTime;
		}
		  
         /*
         public function onSuccess( test : Test ) : void
         {
            if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               addTestToList( true, test );
            }
         }

         public function onError( test : Test, error : Error ) : void
         {
            model.addError();
            
            addTestToList( false, test, error );

            ri
 ghtHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }

         public function onFailure(
                     test : Test,
                     error : AssertionFailedError ) : void
         {
            model.addFailure();

            addTestToList( false, test, error, true );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }*/

         // To replace Binding MetaTag
         private function updateRowSummaryToDisplay() : void
         {
            rightHandSide.updateRowSummaryToDisplay();
            leftHandSide.updateScrollPosition();
         }

      ]]>
   </mx:Script>

   <data:TestRunnerBasePresentationModel
      id="model"
      rowSelectedChanged="updateRowSummaryToDisplay()"
      testSuiteRunDurationChanged="rightHandSide.updateRunDuration()"
      totalErrorsChanged="rightHandSide.updateTotalErrorUI()"
      totalFailuresChanged="rightHandSide.updateTotalFailureUI()"
	  totalIgnoredChanged="rightHandSide.updateTotal
 IgnoredUI()"
      progressChanged="rightHandSide.onTestEnd()"
      filterEnableChanged="leftHandSide.updateFilterSectionEnable()"
      filterChanged="leftHandSide.refreshTree()"
      />
   
   <mx:HBox
      verticalAlign="bottom"
      horizontalGap="0">

      <controls:Title
         text="{ FlexUnitLabels.FLEXUNIT } {FlexUnitCore.version} { FlexUnitLabels.RUNNER }"
         styleName="panelTitleStyle"
         width="275"
         />
      
      <controls:Title
         text="{ FlexUnitLabels.POWERED_BY_ADOBE_CONSULTING }"
         styleName="panelTitleSubStyle"
         useHandCursor="true"
         buttonMode="true"
         mouseChildren= "false"
         click="navigateToURL( new URLRequest( 'http://www.adobe.com/consulting/' ) )"
         />
      
   </mx:HBox>
      
   <mx:HRule
      styleName="flexUnitHRule"
      width="100%"
      />
   
   <mx:HDividedBox
      width="100%" height="100%"
      horizontalGap="30"
      paddingTop="5"
      paddingBottom="30"
   
    paddingLeft="25"
      paddingRight="25">
   
      <controls:LeftHandSide
         id="leftHandSide"
         />
      
      <controls:RightHandSide
         id="rightHandSide"
         />
   
   </mx:HDividedBox>

</mx:Panel>
\ No newline at end of file
+<?xml version="1.0" encoding="utf-8"?>
<mx:Panel
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns="*"
   xmlns:data="org.flexunit.flexui.data.*"
   xmlns:controls="org.flexunit.flexui.controls.*"
   styleName="mainPanel"
   width="100%"
   height="100%"
   minHeight="500"
   minWidth="850"
   verticalScrollPolicy="off"
   horizontalScrollPolicy="off"
   modalTransparencyBlur="0"
   modalTransparency="0"
   implements="org.flexunit.runner.notification.ITemporalRunListener"
   creationComplete="handleCreationComplete()" >

   <mx:Metadata>
      [Event( name="testsComplete", type="org.flexunit.flexui.event.TestsCompleteEvent")]
   </mx:Metadata>
	<mx:Style>
		@font-face {
			font-family: "Myriad Pro SemiCond";
			src: url("/fonts/fonts.swf");
		}
		
		/* Font for anything else */
		@font-face {
			font-family: "Myriad Pro";
			src: url("/fonts/fonts.swf");
		}
		
		@font-face {
			font-family: "Myriad Pro";
			font-weight: bold;
			src: url("/fonts/fonts.swf");
		}
		
		/* Class-
 selectors are the only way to apply styles to components */
		.flexUnitApplication {
			backgroundColor: #3872b2;
			backgroundGradientColors: #3872b2, #0c1a3d;
			backgroundGradientAlphas: 1, 1;
			themeColor: #ffffff;
			color: #444444;
			fontFamily: "Myriad Pro";
			fontSize: 12;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
			modal-transparency-blur: 0;
			modal-transparency: 0;   
		}
		
		.myToolTip {
			fontFamily: "Myriad Pro";
			background-color: #3872b2;
			leading: 5;
		}
		
		.flexUnitVBox {
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitScrollBar
		{
			downArrowDisabledSkin: Embed(source="/skins/VScrollBar_downArrowDisabledSkin.png");
			downArrowDownSkin: Embed(source="/skins/VScrollBar_downArrowDownSkin.png");
			downArrowOverSkin: Embed(source="/skins/VScrollBar_downArrowOverSkin.png");
			downArrowUpSkin: Embed(source="/skins/VScrollBa
 r_downArrowUpSkin.png");
			thumbIcon: Embed(source="/skins/VScrollBar_thumbIcon.png");
			trackSkin: Embed(source="/skins/VScrollBar_trackSkin.png");
			upArrowDisabledSkin: Embed(source="/skins/VScrollBar_upArrowDisabledSkin.png");
			upArrowDownSkin: Embed(source="/skins/VScrollBar_upArrowDownSkin.png");
			upArrowOverSkin: Embed(source="/skins/VScrollBar_upArrowOverSkin.png");
			upArrowUpSkin: Embed(source="/skins/VScrollBar_upArrowUpSkin.png");
			thumbDownSkin: Embed(
				source="/skins/VScrollBar_thumbDownSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbOverSkin: Embed(
				source="/skins/VScrollBar_thumbOverSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbUpSkin: Embed(
				source="/skins/VScrollBar_thumbUpSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
		}
		
		.flexUnitDataGrid {
			alternatingItemColo
 rs: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
		}
		
		.flexUnitSlider {
			themeColor: #2863b4;
		}
		
		.flexUnitTree {
			alternatingItemColors: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.mainPanel {
			header-height: 0;
			vertical-gap: 2;
			borderSkin: Embed( 
				source="/skins/Panel_borderSkin.png", 
				scaleGridLeft="12", scaleGridTop="31", 
				scaleGridRight="265", scaleGridBottom="189" );	
			padding-top: 20;
			padding-left: 8;
			padding-right: 8;
		}
		
		.flexUnitTextInput {
			themeColor: #ffffff;
		}
		
		.flexUnitTextAreaWithBorder {
			borderSkin: E
 mbed(
				source="/skins/TextArea_borderSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="150", scaleGridBottom="18" );
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitTextArea {
			borderStyle: none;
			backgroundAlpha: 0;
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.panelTitleStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 24;
			textIndent: 20;
		}
		
		.panelTitleSubStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 16;
		}
		
		.flexUnitHRule {
			strokeColor: #b9b9b9;
			strokeWidth: 2;
			shadowColor: #FFFFFF; 
		}
		
		.h1 {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 18;
		}
		
		.h2 {
			fontSize: 13;
		}
		
		.flexUnitComboBox {
			upSkin: Embed(
	
 			source="/skins/ComboBox_upSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			overSkin: Embed(
				source="/skins/ComboBox_overSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			downSkin: Embed(
				source="/skins/ComboBox_downSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			disabledSkin: Embed(
				source="/skins/ComboBox_disabledSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			themeColor: #2863b4;
		}
		
		.flexUnitProgressBar
		{
			barColor: #51C148;
			trackSkin: Embed(
				source="/skins/ProgressBar_trackSkin.png",
				scaleGridLeft="1", scaleGridTop="0", 
				scaleGridRight="149", scaleGridBottom="3" );
			trackHeight: 11;
		}
		
		.flexUnitForm {
			paddingTop: 0;
			paddingBottom: 0;
			paddingLeft: 0;
			paddingRight: 0;
			verticalGap: -2;
		}
		
		.flex
 UnitFormItemLabel {
			color: #777777;
		}
		
		.flexUnitFormItemValue {
			color: #444444;
		}
		
		.flexUnitButtonBar
		{
			horizontalGap: -1;
			firstButtonStyleName: "firstButtonBarButton";
			lastButtonStyleName: "lastButtonBarButton";
		}
		
		.firstButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedDisabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Emb
 ed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarFirstButton_upSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.lastButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleG
 ridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarLastButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarLastButton_upSkin.png",
				scaleGridLeft="
 6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.flexUnitControlBar {
			paddingTop: 5;
			paddingBottom: 2;
			paddingLeft: 4;
			paddingRight: 12;
			borderSkin: Embed(
				source="/skins/Panel_controlBarBackgroundSkin.png",
				scaleGridLeft="8", scaleGridTop="1", 
				scaleGridRight="270", scaleGridBottom="17" );
		}
	</mx:Style>
	   
   <mx:Script>
      <![CDATA[
		  import flash.net.navigateToURL;
		  
		  import mx.controls.ToolTip;
		  import mx.controls.listClasses.ListBase;
		  import mx.core.ScrollPolicy;
		  import mx.managers.ToolTipManager;
		  
		  import org.flexunit.Assert;
		  import flexunit.framework.Assert;
		  import org.flexunit.flexui.controls.FlexUnitLabels;
		  import org.flexunit.flexui.data.TestFunctionRowData;
		  import org.flexunit.flexui.event.TestsCompleteEvent;
		  import org.flexunit.runner.Description;
		  import org.flexunit.runner.Descriptor;
		  import org.flexunit.runner.FlexUnitCore;
		  import org.flexunit.r
 unner.IDescription;
		  import org.flexunit.runner.Result;
		  import org.flexunit.runner.notification.Failure;

         public var test : *;// TODO: [XB] was  Test;
		
		
		/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
		*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
		*  successes are both valid cases for a finished test.  With this variable, we can now prevent counting
		*  finished failures as successes.
		*/
		private var lastFailedTest:IDescription;
         private function handleCreationComplete() : void
         {
            ToolTip.maxWidth = 900;
            rightHandSide.model = model;
            leftHandSide.model = model;

            model.filterSectionEnabled = false;
         }

         public function startTest() : void
         {
            // if( test != null )
            {
               // model.totalTests = test.countTestCases(); // TODO: 
 [XB] reenable this

               model.launchTests();

               rightHandSide.launchTests();
               leftHandSide.launchTests();
            }
         }

         private function addTestToList(
                     description : IDescription,
                     failure : Failure = null,
                     ignored : Boolean = false,
					 assertionsMade: uint= 0 ) : void
         {
               var rowAdded : TestFunctionRowData;

               rowAdded = model.addTestRowToHierarchicalList( description, failure, ignored, lastRunTime, assertionsMade );
               
               leftHandSide.testCasesContainer.allTestsHierarchyTree.verticalScrollPosition 
                     = leftHandSide.testCasesContainer.allTestsHierarchyTree.maxVerticalScrollPosition;
               
               /*if( ! success )
               {
                  model.rowSelected = rowAdded;
//               }*/
         }

         //---------------------------------------------
 ------------------------
         // IFlexWriter Methods
         //---------------------------------------------------------------------
		public function testRunStarted( description:IDescription ):void {
			model.totalTests = description.testCount;
			this.startTest();
		}
		
		public function testRunFinished( result:Result ):void {
			rightHandSide.onAllTestsEnd();
            leftHandSide.onAllTestsEnd();

            dispatchEvent( new TestsCompleteEvent() );
		}
		
		private var lastRunTime:Number = 0;
		public function testStarted( description:IDescription ):void {
		}
	
		public function testFinished( description:IDescription ):void {
			if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               model.numTestsRun++;
               /* JT 5/28/09 - added this conditional to handle bugreport FXU-38, the testFinished method of 
               *  this class mistakenly assumed that any test which finished was successful.  This is not the 
 
               *  case, as failures and successes are both valid cases for a finished test.  
			   */
               if(!lastFailedTest || description.displayName != lastFailedTest.displayName){
				   var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
	               addTestToList( description, null, false, totalAssertions );
	           }

               rightHandSide.onTestEnd();
               
               //removed until we can make this work correctly across all cases
               rightHandSide.selectedTestCaseForm.assertionsPerTest.invalidateProperties();
            }
		}
	
		public function testFailure( failure:Failure ):void {
			/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
			*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
			*  successes are both valid cases for a finished test.  With this variab
 le, we can now prevent counting
			*  finished failures as successes.
			*/
			lastFailedTest = failure.description;
			model.addFailure();

			var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
            addTestToList( failure.description, failure, false, totalAssertions );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
		}
	
		public function testAssumptionFailure( failure:Failure ):void {
		}
	
		/**
		 * Called when a test will not be run, generally because a test method is annotated 
		 * with {@link org.junit.Ignore}.
		 * 
		 * @param description describes the test that will not be run
		 */
		public function testIgnored( description:IDescription ):void {
			model.addIgnore();

            addTestToList( description, null, true );
		}
		
		public function testTimed( description:IDescription, runTime:Number ):void {
			lastRunTime = runTime;
		}
		  
         /*
         public function onSuccess(
  test : Test ) : void
         {
            if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               addTestToList( true, test );
            }
         }

         public function onError( test : Test, error : Error ) : void
         {
            model.addError();
            
            addTestToList( false, test, error );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }

         public function onFailure(
                     test : Test,
                     error : AssertionFailedError ) : void
         {
            model.addFailure();

            addTestToList( false, test, error, true );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }*/

         // To replace Binding MetaTag
         private function updateRowSummaryToDisplay() : void
         {
            rightHandSide.updateRowSummaryToDisplay();
            leftHandSide.updateScrollPosition();
         
 }

      ]]>
   </mx:Script>

   <data:TestRunnerBasePresentationModel
      id="model"
      rowSelectedChanged="updateRowSummaryToDisplay()"
      testSuiteRunDurationChanged="rightHandSide.updateRunDuration()"
      totalErrorsChanged="rightHandSide.updateTotalErrorUI()"
      totalFailuresChanged="rightHandSide.updateTotalFailureUI()"
	  totalIgnoredChanged="rightHandSide.updateTotalIgnoredUI()"
      progressChanged="rightHandSide.onTestEnd()"
      filterEnableChanged="leftHandSide.updateFilterSectionEnable()"
      filterChanged="leftHandSide.refreshTree()"
      />
   
   <mx:HBox
      verticalAlign="bottom"
      horizontalGap="0">

      <controls:Title
         text="{ FlexUnitLabels.FLEXUNIT } {FlexUnitCore.version} { FlexUnitLabels.RUNNER }"
         styleName="panelTitleStyle"
         width="275"
         />
      
      <controls:Title
         text="{ FlexUnitLabels.POWERED_BY_ADOBE_CONSULTING }"
         styleName="panelTitleSubStyle"
         useHandCursor="true"
 
         buttonMode="true"
         mouseChildren= "false"
         click="navigateToURL( new URLRequest( 'http://www.adobe.com/consulting/' ) )"
         />
      
   </mx:HBox>
      
   <mx:HRule
      styleName="flexUnitHRule"
      width="100%"
      />
   
   <mx:HDividedBox
      width="100%" height="100%"
      horizontalGap="30"
      paddingTop="5"
      paddingBottom="30"
      paddingLeft="25"
      paddingRight="25">
   
      <controls:LeftHandSide
         id="leftHandSide"
         />
      
      <controls:RightHandSide
         id="rightHandSide"
         />
   
   </mx:HDividedBox>

</mx:Panel>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
index f38d87f..daf89ac 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
@@ -1,32 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
-
 package org.flexunit.flexui.controls
 {
    import mx.utils.StringUtil;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
index 55c13e2..c0a429f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
+
 
 <mx:VBox
    xmlns:mx="http://www.adobe.com/2006/mxml"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
index 65167ce..14c593e 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
+
 
 <mx:VBox
    xmlns:mx="http://www.adobe.com/2006/mxml"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
index 48dd40b..6586f84 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
 
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
 
 <mx:Label 
    xmlns:mx="http://www.adobe.com/2006/mxml"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
index 287efbb..65bcc1d 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
+
 
 <mx:VBox
    xmlns:mx="http://www.adobe.com/2006/mxml"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
index a8bfa1f..0b8d371 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
+
 
 <mx:VBox
    xmlns:mx="http://www.adobe.com/2006/mxml"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
index 344588c..040e36b 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.controls.left.events
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
index 22c07ac..acaf1a7 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
@@ -1,31 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
 package org.flexunit.flexui.controls.left.itemRenderer
 {
    import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
index 5c904ec..3950112 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
 
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
 
 <mx:VBox 
    xmlns:mx="http://www.adobe.com/2006/mxml" 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
index a5b6a42..69c953a 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
@@ -1,33 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 
-<!--
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
--->
+
 
 <mx:Form
    xmlns:mx="http://www.adobe.com/2006/mxml"


[12/41] git commit: removed flexlib copyright header

Posted by cz...@apache.org.
removed flexlib copyright header


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/6473d283
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/6473d283
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/6473d283

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 6473d2833fc5fb894c5b374b08ce67eea28eabf3
Parents: 23fe1a1
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat May 18 12:31:27 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat May 18 12:31:27 2013 +0800

----------------------------------------------------------------------
 .../flexunit/flexui/controls/PromptingTextInput.as |   23 ---------------
 1 files changed, 0 insertions(+), 23 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/6473d283/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
index 000f4be..b79f640 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
@@ -1,26 +1,3 @@
-/*
-Copyright (c) 2007 FlexLib Contributors.  See:
-    http://code.google.com/p/flexlib/wiki/ProjectContributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
-of the Software, and to permit persons to whom the Software is furnished to do
-so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-*/
-
 package org.flexunit.flexui.controls
 {
 


[17/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/token/TokenSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/token/TokenSuite.as b/FlexUnit4Test/src/tests/org/flexunit/token/TokenSuite.as
index 4f22998..93fa9f9 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/token/TokenSuite.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/token/TokenSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.token {
 	[Suite]
 	[RunWith("org.flexunit.runners.Suite")]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/token/helper/PendingStub.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/token/helper/PendingStub.as b/FlexUnit4Test/src/tests/org/flexunit/token/helper/PendingStub.as
index ac69302..a82a2a1 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/token/helper/PendingStub.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/token/helper/PendingStub.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.token.helper {
 	import org.flexunit.runner.IRunner;
 	import org.flexunit.token.ChildResult;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/utils/ClassNameUtilCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/utils/ClassNameUtilCase.as b/FlexUnit4Test/src/tests/org/flexunit/utils/ClassNameUtilCase.as
index 410d8e4..09c797f 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/utils/ClassNameUtilCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/utils/ClassNameUtilCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.utils {
 	import org.flexunit.asserts.assertEquals;
 	import org.flexunit.asserts.assertTrue;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/utils/UtilsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/utils/UtilsSuite.as b/FlexUnit4Test/src/tests/org/flexunit/utils/UtilsSuite.as
index 875d358..f0a316b 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/utils/UtilsSuite.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/utils/UtilsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.utils
 {
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/.actionScriptProperties b/FlexUnit4Turnkey/.actionScriptProperties
index fcc0fcd..23d341b 100644
--- a/FlexUnit4Turnkey/.actionScriptProperties
+++ b/FlexUnit4Turnkey/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <actionScriptProperties mainApplicationPath="FlexUnit4Turnkey.mxml" version="3">
 <compiler additionalCompilerArguments="-locale en_US" copyDependentFiles="true" enableModuleDebug="true" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="true" htmlHistoryManagement="true" htmlPlayerVersion="9.0.124" htmlPlayerVersionCheck="true" outputFolderPath="bin-debug" sourceFolderPath="src" strict="true" useApolloConfig="false" verifyDigests="true" warn="true">
 <compilerSourcePath/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/.flexProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/.flexProperties b/FlexUnit4Turnkey/.flexProperties
index 8ced38d..e34d472 100644
--- a/FlexUnit4Turnkey/.flexProperties
+++ b/FlexUnit4Turnkey/.flexProperties
@@ -1,2 +1,18 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <flexProperties flexServerType="0" toolCompile="true" useServerFlexSDK="false" version="1"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/.project b/FlexUnit4Turnkey/.project
index 89af1d9..c90b2da 100644
--- a/FlexUnit4Turnkey/.project
+++ b/FlexUnit4Turnkey/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4Turnkey</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/.settings/org.eclipse.core.resources.prefs
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/.settings/org.eclipse.core.resources.prefs b/FlexUnit4Turnkey/.settings/org.eclipse.core.resources.prefs
index 93deab2..9fcf28c 100644
--- a/FlexUnit4Turnkey/.settings/org.eclipse.core.resources.prefs
+++ b/FlexUnit4Turnkey/.settings/org.eclipse.core.resources.prefs
@@ -1,3 +1,18 @@
+# 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.
+
 #Sun May 03 20:19:53 CDT 2009
 eclipse.preferences.version=1
 encoding/<project>=utf-8

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/html-template/history/history.css
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/html-template/history/history.css b/FlexUnit4Turnkey/html-template/history/history.css
index dbc47c6..8716330 100644
--- a/FlexUnit4Turnkey/html-template/history/history.css
+++ b/FlexUnit4Turnkey/html-template/history/history.css
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 /* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */
 
 #ie_historyFrame { width: 0px; height: 0px; display:none }

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/html-template/history/history.js
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/html-template/history/history.js b/FlexUnit4Turnkey/html-template/history/history.js
index 3279a53..c6d88d5 100644
--- a/FlexUnit4Turnkey/html-template/history/history.js
+++ b/FlexUnit4Turnkey/html-template/history/history.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 BrowserHistoryUtils = {
     addEvent: function(elm, evType, fn, useCapture) {
         useCapture = useCapture || false;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/html-template/history/historyFrame.html
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/html-template/history/historyFrame.html b/FlexUnit4Turnkey/html-template/history/historyFrame.html
index 07e3806..c8af338 100644
--- a/FlexUnit4Turnkey/html-template/history/historyFrame.html
+++ b/FlexUnit4Turnkey/html-template/history/historyFrame.html
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <html>
     <head>
         <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/html-template/index.template.html
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/html-template/index.template.html b/FlexUnit4Turnkey/html-template/index.template.html
index 20ee809..eaa3a12 100644
--- a/FlexUnit4Turnkey/html-template/index.template.html
+++ b/FlexUnit4Turnkey/html-template/index.template.html
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <!-- saved from url=(0014)about:internet -->
 <html lang="en">
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/FlexUnit4Turnkey.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/FlexUnit4Turnkey.mxml b/FlexUnit4Turnkey/src/FlexUnit4Turnkey.mxml
index 739b7d5..e9f9cd0 100644
--- a/FlexUnit4Turnkey/src/FlexUnit4Turnkey.mxml
+++ b/FlexUnit4Turnkey/src/FlexUnit4Turnkey.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
 	creationComplete="runMe()" xmlns:flexUnitUIRunner="http://www.adobe.com/2009/flexUnitUIRunner" 
 	styleName="flexUnitApplication" >

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/TestingTester.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/TestingTester.as b/FlexUnit4Turnkey/src/flexUnitTests/TestingTester.as
index 00edd62..a41f270 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/TestingTester.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/TestingTester.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flashx.textLayout.debug.assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
index 37422bc..c81bde8 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
index 1ef7756..15ab6fd 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
index d1e60c1..9095ca3 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
index d9ac0b7..f8c024c 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flexunit.framework.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
index d22fe0d..f734809 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class FailureTestCase extends TestCase
   {
       public function FailureTestCase(name : String):void
       {
           super(name);
       }
   
       public function testFailure():void
       {
           fail("intentional failure");
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
index f6b7ed5..73349c7 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTearDownTestCase extends TearDownTestCase
   {
       public function SetupErrorTearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();
       }
   
       public function testSuccess():void
       {
          assertTrue( true );
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
index 53e77ee..c0025a9 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTestCase extends ErrorTestCase
   {
   
       public function SetupErrorTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();    
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
index d81f74d..2432081 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SuccessTestCase extends TestCase
   {
       public function SuccessTestCase(name : String):void
       {
           super(name);
       }
   
       public function testSuccess():void
       {
           expectedResult = true;
           
           assertTrue( expectedResult );
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
index 2b98218..d8dded3 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownErrorTestCase extends TearDownTestCase
   {
   
       public function TearDownErrorTestCase(name : String)
       {
           super(name);
       }
   
       public function testSuccess() : void
       {
          assertTrue( true );
       }
   
       override public function tearDown() : void
       {
           super.tearDown();
           throw new Error("tearDown");
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
index 4b52d56..6eb82fd 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownTestCase extends ErrorTestCase
   {
   
       public function TearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function tearDown() : void
       {
           expectedResult = true;
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
index 447ff89..97656b9 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAssert.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flexunit.framework.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
index 34ac69e..edc508e 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.TimerEvent;
   import flash.utils.Timer;
   
   import flexunit.framework.Assert;
   import flexunit.framework.TestCase;
   import flexunit.framework.TestResult;

   public class TestAsynchronous extends TestCase
   {
       public function TestAsynchronous(name : String = null)
       {
           super(name);
       }
   
       public function testInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dia
 log
       //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestInTimeError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLatePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dialog
     
   //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestTooLateError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testSecondInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLatePass() : void
       {
           var test : TestCase = new As
 ynchronousTestCase("testSecondTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testTimeoutFunctionFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           var test : TestCa
 se = new AsynchronousTestCase("testNotReallyAsynchronousPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testNotReallyAsynchronousFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function shouldBeRun(event : Event, passedData : Object) : void
       {
           var result : TestResult = passedData.result;
           var expectedRun : int = passedData.expectedRun;
           var expectedFail : int = passedData.expectedFail;
           var expectedError : int = passedData.expectedError;
   
           Assert.assertEquals("result.runCount() is not correct", expectedRun, result.runCount());
           Assert.assertEquals("result.failureCount() is not correct",expectedFail, result.failureCount());
           Assert.assertEquals
 ("result.errorCount() is not correct", expectedError, result.errorCount());
       }
   
       private function initAsync(result : TestResult, expectedRun : int, expectedFail : int, expectedError : int):void
       {
           var data : Object = new Object();
           data.result = result;
           data.expectedRun = expectedRun;
           data.expectedFail = expectedFail;
           data.expectedError = expectedError;
           var t : Timer = new Timer(1000, 1);
           var helper : Function = addAsync(shouldBeRun, 1500, data, function():void { fail('shouldBeRun did not fire')} );
           t.addEventListener( TimerEvent.TIMER, helper );
           t.start();
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
index e2831a0..22a6526 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
index 865e047..6b1cd59 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flexunit.framework.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
index f9bc3b2..ce2c034 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestListener extends TestCase implements TestListener
   {
       public function TestTestListener(name : String = null)
       {
           super(name);
       }
   
   	public function addError( test : Test, e : Error ) : void
   	{
   		errorCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function addFailure( test : Test , e : AssertionFailedError ) : void
   	{
   		failureCount++;
   	}
   	
   //------------------------------------------------------------------------------
   
   	public function startTest( test : Test ) : void 
   	{
   		startCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function endTest( test : Test ) : void 
   	{
   		endCount++;
   	}
   	
   //----------------------------------------------------------------------
 --------
   
   	override public function setUp() : void
   	{
   		result = new TestResult();
   		result.addListener( TestListener(this) );
   	
   		startCount = 0;
   		endCount = 0;
   		failureCount = 0;
   		errorCount = 0;
   	}
   	
   //------------------------------------------------------------------------------
   	
   	public function testError():void 
   	{
   		var test : TestCase = new ErrorTestCase( "throwError" )
   		test.runWithResult( result );
   		Assert.assertEquals("error", 1, errorCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testFailure():void 
   	{
   		var test : TestCase = new FailureTestCase( "testFailure" )
   		test.runWithResult( result );
   		Assert.assertEquals("failure", 1, failureCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("er
 ror", 0, errorCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testStartStop():void 
   	{
   		var test : TestCase = new SuccessTestCase( "testSuccess" )
   		test.runWithResult( result );
   		Assert.assertEquals("start", 1, startCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("error", 0, errorCount);
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	private var result : TestResult;
   	private var startCount : Number;
   	private var endCount : Number;
   	private var failureCount : Number;
   	private var errorCount : Number;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
index 7b7a81c..85ccdf2 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flash.events.Event;
   
   public class ValueEvent extends Event
   {
       public function ValueEvent(value : String)
       {
           super("value");
           this.value = value;
       }
   
       public var value : String;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
index e77a866..5e9ca5f 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite
 {
 	import flexUnitTests.flexUnit1.framework.AllFrameworkTests;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
index ec87f5b..92201f4 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
index d383e71..8180289 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
index 0c213f7..85d5511 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases {
 	import flash.events.DataEvent;
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
index b8f73cc..aa18b59 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
index dc8b47d..d168a1c 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
index 40b98d3..ad3d227 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
index 9eb5ca5..9e9d7f7 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
index 87a0912..57623c0 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
index 6d46e86..d44d6ad 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
index 27ee830..3b01ba4 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
index a7b4862..caac6dd 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
index 164a742..b779b87 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
index 122be2e..9c6dffa 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
index 1e42eda..e6e9df0 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" title="Please Login" height="168">
 	<mx:Metadata>
 		[Event('loginRequested')]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
index 1a07105..bbc1592 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases.valueObject
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
index 28d32cc..3663d42 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite {
 	import org.flexunit.assertThat;
 	import org.flexunit.assumeThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as b/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
index 4af5158..4a26fa4 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.hamcrest
 {
 	import org.hamcrest.BaseMatcherTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/math/SimpleMath.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/math/SimpleMath.as b/FlexUnit4Turnkey/src/math/SimpleMath.as
index 2ef0859..7e3cdfe 100644
--- a/FlexUnit4Turnkey/src/math/SimpleMath.as
+++ b/FlexUnit4Turnkey/src/math/SimpleMath.as
@@ -1,3 +1,19 @@
+/*
+ * 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 math {
 	public class SimpleMath {
 		public function add( n1:Number, n2:Number ):Number {

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/AbstractMatcherTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/AbstractMatcherTestCase.as b/FlexUnit4Turnkey/src/org/hamcrest/AbstractMatcherTestCase.as
index 7ad8ab9..bf57e9f 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/AbstractMatcherTestCase.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/AbstractMatcherTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/BaseMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/BaseMatcherTest.as b/FlexUnit4Turnkey/src/org/hamcrest/BaseMatcherTest.as
index a9d96f7..296d582 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/BaseMatcherTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/BaseMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/CustomMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/CustomMatcherTest.as b/FlexUnit4Turnkey/src/org/hamcrest/CustomMatcherTest.as
index 2dc5f8b..95b27d7 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/CustomMatcherTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/CustomMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 


[14/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
index 5cb174f..c099b0b 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
@@ -1 +1,16 @@
-<?xml version="1.0" encoding="utf-8"?>
<mx:Panel
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns="*"
   xmlns:data="org.flexunit.flexui.data.*"
   xmlns:controls="org.flexunit.flexui.controls.*"
   styleName="mainPanel"
   width="100%"
   height="100%"
   minHeight="500"
   minWidth="850"
   verticalScrollPolicy="off"
   horizontalScrollPolicy="off"
   modalTransparencyBlur="0"
   modalTransparency="0"
   implements="org.flexunit.runner.notification.ITemporalRunListener"
   creationComplete="handleCreationComplete()" >

   <mx:Metadata>
      [Event( name="testsComplete", type="org.flexunit.flexui.event.TestsCompleteEvent")]
   </mx:Metadata>
	<mx:Style>
		@font-face {
			font-family: "Myriad Pro SemiCond";
			src: url("/fonts/fonts.swf");
		}
		
		/* Font for anything else */
		@font-face {
			font-family: "Myriad Pro";
			src: url("/fonts/fonts.swf");
		}
		
		@font-face {
			font-family: "Myriad Pro";
			font-weight: bold;
			src: url("/fonts/fonts.swf");
		}
		
		/* Class-
 selectors are the only way to apply styles to components */
		.flexUnitApplication {
			backgroundColor: #3872b2;
			backgroundGradientColors: #3872b2, #0c1a3d;
			backgroundGradientAlphas: 1, 1;
			themeColor: #ffffff;
			color: #444444;
			fontFamily: "Myriad Pro";
			fontSize: 12;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
			modal-transparency-blur: 0;
			modal-transparency: 0;   
		}
		
		.myToolTip {
			fontFamily: "Myriad Pro";
			background-color: #3872b2;
			leading: 5;
		}
		
		.flexUnitVBox {
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitScrollBar
		{
			downArrowDisabledSkin: Embed(source="/skins/VScrollBar_downArrowDisabledSkin.png");
			downArrowDownSkin: Embed(source="/skins/VScrollBar_downArrowDownSkin.png");
			downArrowOverSkin: Embed(source="/skins/VScrollBar_downArrowOverSkin.png");
			downArrowUpSkin: Embed(source="/skins/VScrollBa
 r_downArrowUpSkin.png");
			thumbIcon: Embed(source="/skins/VScrollBar_thumbIcon.png");
			trackSkin: Embed(source="/skins/VScrollBar_trackSkin.png");
			upArrowDisabledSkin: Embed(source="/skins/VScrollBar_upArrowDisabledSkin.png");
			upArrowDownSkin: Embed(source="/skins/VScrollBar_upArrowDownSkin.png");
			upArrowOverSkin: Embed(source="/skins/VScrollBar_upArrowOverSkin.png");
			upArrowUpSkin: Embed(source="/skins/VScrollBar_upArrowUpSkin.png");
			thumbDownSkin: Embed(
				source="/skins/VScrollBar_thumbDownSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbOverSkin: Embed(
				source="/skins/VScrollBar_thumbOverSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbUpSkin: Embed(
				source="/skins/VScrollBar_thumbUpSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
		}
		
		.flexUnitDataGrid {
			alternatingItemColo
 rs: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
		}
		
		.flexUnitSlider {
			themeColor: #2863b4;
		}
		
		.flexUnitTree {
			alternatingItemColors: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.mainPanel {
			header-height: 0;
			vertical-gap: 2;
			borderSkin: Embed( 
				source="/skins/Panel_borderSkin.png", 
				scaleGridLeft="12", scaleGridTop="31", 
				scaleGridRight="265", scaleGridBottom="189" );	
			padding-top: 20;
			padding-left: 8;
			padding-right: 8;
		}
		
		.flexUnitTextInput {
			themeColor: #ffffff;
		}
		
		.flexUnitTextAreaWithBorder {
			borderSkin: E
 mbed(
				source="/skins/TextArea_borderSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="150", scaleGridBottom="18" );
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitTextArea {
			borderStyle: none;
			backgroundAlpha: 0;
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.panelTitleStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 24;
			textIndent: 20;
		}
		
		.panelTitleSubStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 16;
		}
		
		.flexUnitHRule {
			strokeColor: #b9b9b9;
			strokeWidth: 2;
			shadowColor: #FFFFFF; 
		}
		
		.h1 {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 18;
		}
		
		.h2 {
			fontSize: 13;
		}
		
		.flexUnitComboBox {
			upSkin: Embed(
	
 			source="/skins/ComboBox_upSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			overSkin: Embed(
				source="/skins/ComboBox_overSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			downSkin: Embed(
				source="/skins/ComboBox_downSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			disabledSkin: Embed(
				source="/skins/ComboBox_disabledSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			themeColor: #2863b4;
		}
		
		.flexUnitProgressBar
		{
			barColor: #51C148;
			trackSkin: Embed(
				source="/skins/ProgressBar_trackSkin.png",
				scaleGridLeft="1", scaleGridTop="0", 
				scaleGridRight="149", scaleGridBottom="3" );
			trackHeight: 11;
		}
		
		.flexUnitForm {
			paddingTop: 0;
			paddingBottom: 0;
			paddingLeft: 0;
			paddingRight: 0;
			verticalGap: -2;
		}
		
		.flex
 UnitFormItemLabel {
			color: #777777;
		}
		
		.flexUnitFormItemValue {
			color: #444444;
		}
		
		.flexUnitButtonBar
		{
			horizontalGap: -1;
			firstButtonStyleName: "firstButtonBarButton";
			lastButtonStyleName: "lastButtonBarButton";
		}
		
		.firstButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedDisabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Emb
 ed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarFirstButton_upSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.lastButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleG
 ridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarLastButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarLastButton_upSkin.png",
				scaleGridLeft="
 6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.flexUnitControlBar {
			paddingTop: 5;
			paddingBottom: 2;
			paddingLeft: 4;
			paddingRight: 12;
			borderSkin: Embed(
				source="/skins/Panel_controlBarBackgroundSkin.png",
				scaleGridLeft="8", scaleGridTop="1", 
				scaleGridRight="270", scaleGridBottom="17" );
		}
	</mx:Style>
	   
   <mx:Script>
      <![CDATA[
		  import flash.net.navigateToURL;
		  
		  import mx.controls.ToolTip;
		  import mx.controls.listClasses.ListBase;
		  import mx.core.ScrollPolicy;
		  import mx.managers.ToolTipManager;
		  
		  import org.flexunit.Assert;
		  import flexunit.framework.Assert;
		  import org.flexunit.flexui.controls.FlexUnitLabels;
		  import org.flexunit.flexui.data.TestFunctionRowData;
		  import org.flexunit.flexui.event.TestsCompleteEvent;
		  import org.flexunit.runner.Description;
		  import org.flexunit.runner.Descriptor;
		  import org.flexunit.runner.FlexUnitCore;
		  import org.flexunit.r
 unner.IDescription;
		  import org.flexunit.runner.Result;
		  import org.flexunit.runner.notification.Failure;

         public var test : *;// TODO: [XB] was  Test;
		
		
		/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
		*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
		*  successes are both valid cases for a finished test.  With this variable, we can now prevent counting
		*  finished failures as successes.
		*/
		private var lastFailedTest:IDescription;
         private function handleCreationComplete() : void
         {
            ToolTip.maxWidth = 900;
            rightHandSide.model = model;
            leftHandSide.model = model;

            model.filterSectionEnabled = false;
         }

         public function startTest() : void
         {
            // if( test != null )
            {
               // model.totalTests = test.countTestCases(); // TODO: 
 [XB] reenable this

               model.launchTests();

               rightHandSide.launchTests();
               leftHandSide.launchTests();
            }
         }

         private function addTestToList(
                     description : IDescription,
                     failure : Failure = null,
                     ignored : Boolean = false,
					 assertionsMade: uint= 0 ) : void
         {
               var rowAdded : TestFunctionRowData;

               rowAdded = model.addTestRowToHierarchicalList( description, failure, ignored, lastRunTime, assertionsMade );
               
               leftHandSide.testCasesContainer.allTestsHierarchyTree.verticalScrollPosition 
                     = leftHandSide.testCasesContainer.allTestsHierarchyTree.maxVerticalScrollPosition;
               
               /*if( ! success )
               {
                  model.rowSelected = rowAdded;
//               }*/
         }

         //---------------------------------------------
 ------------------------
         // IFlexWriter Methods
         //---------------------------------------------------------------------
		public function testRunStarted( description:IDescription ):void {
			model.totalTests = description.testCount;
			this.startTest();
		}
		
		public function testRunFinished( result:Result ):void {
			rightHandSide.onAllTestsEnd();
            leftHandSide.onAllTestsEnd();

            dispatchEvent( new TestsCompleteEvent() );
		}
		
		private var lastRunTime:Number = 0;
		public function testStarted( description:IDescription ):void {
		}
	
		public function testFinished( description:IDescription ):void {
			if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               model.numTestsRun++;
               /* JT 5/28/09 - added this conditional to handle bugreport FXU-38, the testFinished method of 
               *  this class mistakenly assumed that any test which finished was successful.  This is not the 
 
               *  case, as failures and successes are both valid cases for a finished test.  
			   */
               if(!lastFailedTest || description.displayName != lastFailedTest.displayName){
				   var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
	               addTestToList( description, null, false, totalAssertions );
	           }

               rightHandSide.onTestEnd();
               
               //removed until we can make this work correctly across all cases
               rightHandSide.selectedTestCaseForm.assertionsPerTest.invalidateProperties();
            }
		}
	
		public function testFailure( failure:Failure ):void {
			/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
			*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
			*  successes are both valid cases for a finished test.  With this variab
 le, we can now prevent counting
			*  finished failures as successes.
			*/
			lastFailedTest = failure.description;
			model.addFailure();

			var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
            addTestToList( failure.description, failure, false, totalAssertions );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
		}
	
		public function testAssumptionFailure( failure:Failure ):void {
		}
	
		/**
		 * Called when a test will not be run, generally because a test method is annotated 
		 * with {@link org.junit.Ignore}.
		 * 
		 * @param description describes the test that will not be run
		 */
		public function testIgnored( description:IDescription ):void {
			model.addIgnore();

            addTestToList( description, null, true );
		}
		
		public function testTimed( description:IDescription, runTime:Number ):void {
			lastRunTime = runTime;
		}
		  
         /*
         public function onSuccess(
  test : Test ) : void
         {
            if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               addTestToList( true, test );
            }
         }

         public function onError( test : Test, error : Error ) : void
         {
            model.addError();
            
            addTestToList( false, test, error );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }

         public function onFailure(
                     test : Test,
                     error : AssertionFailedError ) : void
         {
            model.addFailure();

            addTestToList( false, test, error, true );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }*/

         // To replace Binding MetaTag
         private function updateRowSummaryToDisplay() : void
         {
            rightHandSide.updateRowSummaryToDisplay();
            leftHandSide.updateScrollPosition();
         
 }

      ]]>
   </mx:Script>

   <data:TestRunnerBasePresentationModel
      id="model"
      rowSelectedChanged="updateRowSummaryToDisplay()"
      testSuiteRunDurationChanged="rightHandSide.updateRunDuration()"
      totalErrorsChanged="rightHandSide.updateTotalErrorUI()"
      totalFailuresChanged="rightHandSide.updateTotalFailureUI()"
	  totalIgnoredChanged="rightHandSide.updateTotalIgnoredUI()"
      progressChanged="rightHandSide.onTestEnd()"
      filterEnableChanged="leftHandSide.updateFilterSectionEnable()"
      filterChanged="leftHandSide.refreshTree()"
      />
   
   <mx:HBox
      verticalAlign="bottom"
      horizontalGap="0">

      <controls:Title
         text="{ FlexUnitLabels.FLEXUNIT } {FlexUnitCore.version} { FlexUnitLabels.RUNNER }"
         styleName="panelTitleStyle"
         width="275"
         />
      
      <controls:Title
         text="{ FlexUnitLabels.POWERED_BY_ADOBE_CONSULTING }"
         styleName="panelTitleSubStyle"
         useHandCursor="true"
 
         buttonMode="true"
         mouseChildren= "false"
         click="navigateToURL( new URLRequest( 'http://www.adobe.com/consulting/' ) )"
         />
      
   </mx:HBox>
      
   <mx:HRule
      styleName="flexUnitHRule"
      width="100%"
      />
   
   <mx:HDividedBox
      width="100%" height="100%"
      horizontalGap="30"
      paddingTop="5"
      paddingBottom="30"
      paddingLeft="25"
      paddingRight="25">
   
      <controls:LeftHandSide
         id="leftHandSide"
         />
      
      <controls:RightHandSide
         id="rightHandSide"
         />
   
   </mx:HDividedBox>

</mx:Panel>
\ No newline at end of file
+<?xml version="1.0" encoding="utf-8"?>
<mx:Panel
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns="*"
   xmlns:data="org.flexunit.flexui.data.*"
   xmlns:controls="org.flexunit.flexui.controls.*"
   styleName="mainPanel"
   width="100%"
   height="100%"
   minHeight="500"
   minWidth="850"
   verticalScrollPolicy="off"
   horizontalScrollPolicy="off"
   modalTransparencyBlur="0"
   modalTransparency="0"
   implements="org.flexunit.runner.notification.ITemporalRunListener"
   creationComplete="handleCreationComplete()" >

   <mx:Metadata>
      [Event( name="testsComplete", type="org.flexunit.flexui.event.TestsCompleteEvent")]
   </mx:Metadata>
	<mx:Style>
		@font-face {
			font-family: "Myriad Pro SemiCond";
			src: url("/fonts/fonts.swf");
		}
		
		/* Font for anything else */
		@font-face {
			font-family: "Myriad Pro";
			src: url("/fonts/fonts.swf");
		}
		
		@font-face {
			font-family: "Myriad Pro";
			font-weight: bold;
			src: url("/fonts/fonts.swf");
		}
		
		/* Class-
 selectors are the only way to apply styles to components */
		.flexUnitApplication {
			backgroundColor: #3872b2;
			backgroundGradientColors: #3872b2, #0c1a3d;
			backgroundGradientAlphas: 1, 1;
			themeColor: #ffffff;
			color: #444444;
			fontFamily: "Myriad Pro";
			fontSize: 12;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
			modal-transparency-blur: 0;
			modal-transparency: 0;   
		}
		
		.myToolTip {
			fontFamily: "Myriad Pro";
			background-color: #3872b2;
			leading: 5;
		}
		
		.flexUnitVBox {
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitScrollBar
		{
			downArrowDisabledSkin: Embed(source="/skins/VScrollBar_downArrowDisabledSkin.png");
			downArrowDownSkin: Embed(source="/skins/VScrollBar_downArrowDownSkin.png");
			downArrowOverSkin: Embed(source="/skins/VScrollBar_downArrowOverSkin.png");
			downArrowUpSkin: Embed(source="/skins/VScrollBa
 r_downArrowUpSkin.png");
			thumbIcon: Embed(source="/skins/VScrollBar_thumbIcon.png");
			trackSkin: Embed(source="/skins/VScrollBar_trackSkin.png");
			upArrowDisabledSkin: Embed(source="/skins/VScrollBar_upArrowDisabledSkin.png");
			upArrowDownSkin: Embed(source="/skins/VScrollBar_upArrowDownSkin.png");
			upArrowOverSkin: Embed(source="/skins/VScrollBar_upArrowOverSkin.png");
			upArrowUpSkin: Embed(source="/skins/VScrollBar_upArrowUpSkin.png");
			thumbDownSkin: Embed(
				source="/skins/VScrollBar_thumbDownSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbOverSkin: Embed(
				source="/skins/VScrollBar_thumbOverSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbUpSkin: Embed(
				source="/skins/VScrollBar_thumbUpSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
		}
		
		.flexUnitDataGrid {
			alternatingItemColo
 rs: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
		}
		
		.flexUnitSlider {
			themeColor: #2863b4;
		}
		
		.flexUnitTree {
			alternatingItemColors: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.mainPanel {
			header-height: 0;
			vertical-gap: 2;
			borderSkin: Embed( 
				source="/skins/Panel_borderSkin.png", 
				scaleGridLeft="12", scaleGridTop="31", 
				scaleGridRight="265", scaleGridBottom="189" );	
			padding-top: 20;
			padding-left: 8;
			padding-right: 8;
		}
		
		.flexUnitTextInput {
			themeColor: #ffffff;
		}
		
		.flexUnitTextAreaWithBorder {
			borderSkin: E
 mbed(
				source="/skins/TextArea_borderSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="150", scaleGridBottom="18" );
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitTextArea {
			borderStyle: none;
			backgroundAlpha: 0;
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.panelTitleStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 24;
			textIndent: 20;
		}
		
		.panelTitleSubStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 16;
		}
		
		.flexUnitHRule {
			strokeColor: #b9b9b9;
			strokeWidth: 2;
			shadowColor: #FFFFFF; 
		}
		
		.h1 {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 18;
		}
		
		.h2 {
			fontSize: 13;
		}
		
		.flexUnitComboBox {
			upSkin: Embed(
	
 			source="/skins/ComboBox_upSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			overSkin: Embed(
				source="/skins/ComboBox_overSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			downSkin: Embed(
				source="/skins/ComboBox_downSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			disabledSkin: Embed(
				source="/skins/ComboBox_disabledSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			themeColor: #2863b4;
		}
		
		.flexUnitProgressBar
		{
			barColor: #51C148;
			trackSkin: Embed(
				source="/skins/ProgressBar_trackSkin.png",
				scaleGridLeft="1", scaleGridTop="0", 
				scaleGridRight="149", scaleGridBottom="3" );
			trackHeight: 11;
		}
		
		.flexUnitForm {
			paddingTop: 0;
			paddingBottom: 0;
			paddingLeft: 0;
			paddingRight: 0;
			verticalGap: -2;
		}
		
		.flex
 UnitFormItemLabel {
			color: #777777;
		}
		
		.flexUnitFormItemValue {
			color: #444444;
		}
		
		.flexUnitButtonBar
		{
			horizontalGap: -1;
			firstButtonStyleName: "firstButtonBarButton";
			lastButtonStyleName: "lastButtonBarButton";
		}
		
		.firstButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedDisabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Emb
 ed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarFirstButton_upSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.lastButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleG
 ridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarLastButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarLastButton_upSkin.png",
				scaleGridLeft="
 6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.flexUnitControlBar {
			paddingTop: 5;
			paddingBottom: 2;
			paddingLeft: 4;
			paddingRight: 12;
			borderSkin: Embed(
				source="/skins/Panel_controlBarBackgroundSkin.png",
				scaleGridLeft="8", scaleGridTop="1", 
				scaleGridRight="270", scaleGridBottom="17" );
		}
	</mx:Style>
	   
   <mx:Script>
      <![CDATA[
		  import flash.net.navigateToURL;
		  
		  import mx.controls.ToolTip;
		  import mx.controls.listClasses.ListBase;
		  import mx.core.ScrollPolicy;
		  import mx.managers.ToolTipManager;
		  
		  import org.flexunit.Assert;
		  import flexunit.framework.Assert;
		  import org.flexunit.flexui.controls.FlexUnitLabels;
		  import org.flexunit.flexui.data.TestFunctionRowData;
		  import org.flexunit.flexui.event.TestsCompleteEvent;
		  import org.flexunit.runner.Description;
		  import org.flexunit.runner.Descriptor;
		  import org.flexunit.runner.FlexUnitCore;
		  import org.flexunit.r
 unner.IDescription;
		  import org.flexunit.runner.Result;
		  import org.flexunit.runner.notification.Failure;

         public var test : *;// TODO: [XB] was  Test;
		
		
		/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
		*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
		*  successes are both valid cases for a finished test.  With this variable, we can now prevent counting
		*  finished failures as successes.
		*/
		private var lastFailedTest:IDescription;
         private function handleCreationComplete() : void
         {
            ToolTip.maxWidth = 900;
            rightHandSide.model = model;
            leftHandSide.model = model;

            model.filterSectionEnabled = false;
         }

         public function startTest() : void
         {
            // if( test != null )
            {
               // model.totalTests = test.countTestCases(); // TODO: 
 [XB] reenable this

               model.launchTests();

               rightHandSide.launchTests();
               leftHandSide.launchTests();
            }
         }

         private function addTestToList(
                     description : IDescription,
                     failure : Failure = null,
                     ignored : Boolean = false,
					 assertionsMade: uint= 0 ) : void
         {
               var rowAdded : TestFunctionRowData;

               rowAdded = model.addTestRowToHierarchicalList( description, failure, ignored, lastRunTime, assertionsMade );
               
               leftHandSide.testCasesContainer.allTestsHierarchyTree.verticalScrollPosition 
                     = leftHandSide.testCasesContainer.allTestsHierarchyTree.maxVerticalScrollPosition;
               
               /*if( ! success )
               {
                  model.rowSelected = rowAdded;
//               }*/
         }

         //---------------------------------------------
 ------------------------
         // IFlexWriter Methods
         //---------------------------------------------------------------------
		public function testRunStarted( description:IDescription ):void {
			model.totalTests = description.testCount;
			this.startTest();
		}
		
		public function testRunFinished( result:Result ):void {
			rightHandSide.onAllTestsEnd();
            leftHandSide.onAllTestsEnd();

            dispatchEvent( new TestsCompleteEvent() );
		}
		
		private var lastRunTime:Number = 0;
		public function testStarted( description:IDescription ):void {
		}
	
		public function testFinished( description:IDescription ):void {
			if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               model.numTestsRun++;
               /* JT 5/28/09 - added this conditional to handle bugreport FXU-38, the testFinished method of 
               *  this class mistakenly assumed that any test which finished was successful.  This is not the 
 
               *  case, as failures and successes are both valid cases for a finished test.  
			   */
               if(!lastFailedTest || description.displayName != lastFailedTest.displayName){
				   var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
	               addTestToList( description, null, false, totalAssertions );
	           }

               rightHandSide.onTestEnd();
               
               //removed until we can make this work correctly across all cases
               rightHandSide.selectedTestCaseForm.assertionsPerTest.invalidateProperties();
            }
		}
	
		public function testFailure( failure:Failure ):void {
			/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
			*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
			*  successes are both valid cases for a finished test.  With this variab
 le, we can now prevent counting
			*  finished failures as successes.
			*/
			lastFailedTest = failure.description;
			model.addFailure();

			var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
            addTestToList( failure.description, failure, false, totalAssertions );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
		}
	
		public function testAssumptionFailure( failure:Failure ):void {
		}
	
		/**
		 * Called when a test will not be run, generally because a test method is annotated 
		 * with {@link org.junit.Ignore}.
		 * 
		 * @param description describes the test that will not be run
		 */
		public function testIgnored( description:IDescription ):void {
			model.addIgnore();

            addTestToList( description, null, true );
		}
		
		public function testTimed( description:IDescription, runTime:Number ):void {
			lastRunTime = runTime;
		}
		  
         /*
         public function onSuccess(
  test : Test ) : void
         {
            if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               addTestToList( true, test );
            }
         }

         public function onError( test : Test, error : Error ) : void
         {
            model.addError();
            
            addTestToList( false, test, error );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }

         public function onFailure(
                     test : Test,
                     error : AssertionFailedError ) : void
         {
            model.addFailure();

            addTestToList( false, test, error, true );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }*/

         // To replace Binding MetaTag
         private function updateRowSummaryToDisplay() : void
         {
            rightHandSide.updateRowSummaryToDisplay();
            leftHandSide.updateScrollPosition();
         
 }

      ]]>
   </mx:Script>

   <data:TestRunnerBasePresentationModel
      id="model"
      rowSelectedChanged="updateRowSummaryToDisplay()"
      testSuiteRunDurationChanged="rightHandSide.updateRunDuration()"
      totalErrorsChanged="rightHandSide.updateTotalErrorUI()"
      totalFailuresChanged="rightHandSide.updateTotalFailureUI()"
	  totalIgnoredChanged="rightHandSide.updateTotalIgnoredUI()"
      progressChanged="rightHandSide.onTestEnd()"
      filterEnableChanged="leftHandSide.updateFilterSectionEnable()"
      filterChanged="leftHandSide.refreshTree()"
      />
   
   <mx:HBox
      verticalAlign="bottom"
      horizontalGap="0">

      <controls:Title
         text="{ FlexUnitLabels.FLEXUNIT } {FlexUnitCore.version} { FlexUnitLabels.RUNNER }"
         styleName="panelTitleStyle"
         width="275"
         />
      
      <controls:Title
         text="{ FlexUnitLabels.POWERED_BY_ADOBE_CONSULTING }"
         styleName="panelTitleSubStyle"
         useHandCursor="true"
 
         buttonMode="true"
         mouseChildren= "false"
         click="navigateToURL( new URLRequest( 'http://www.adobe.com/consulting/' ) )"
         />
      
   </mx:HBox>
      
   <mx:HRule
      styleName="flexUnitHRule"
      width="100%"
      />
   
   <mx:HDividedBox
      width="100%" height="100%"
      horizontalGap="30"
      paddingTop="5"
      paddingBottom="30"
      paddingLeft="25"
      paddingRight="25">
   
      <controls:LeftHandSide
         id="leftHandSide"
         />
      
      <controls:RightHandSide
         id="rightHandSide"
         />
   
   </mx:HDividedBox>

</mx:Panel><!--
+  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.
+-->

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
index daf89ac..c72e877 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/FlexUnitLabels.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.controls
 {
    import mx.utils.StringUtil;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
index c0a429f..fbe3392 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/LeftHandSide.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
index 14c593e..5500d20 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/RightHandSide.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
index 6586f84..61e0eae 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/Title.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
index 65bcc1d..0bf8504 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/FilterArea.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
index 0b8d371..3cf4491 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/TestCasesTree.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
index 040e36b..06a412d 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/events/SearchBarEvent.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.controls.left.events
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
index acaf1a7..3a4fc08 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/left/itemRenderer/TestResultTreeItemRenderer.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.controls.left.itemRenderer
 {
    import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
index 3950112..767a72f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/RunningTests.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
index 69c953a..bae0cc0 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/SelectedTestCaseForm.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
index 1d8f3c8..1db71e1 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/StackTraceContainer.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
index fb0f911..454d9ce 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/right/TestsComplete.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
index 2207548..230f7ce 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/AbstractRowData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
index dfec556..e979af6 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/FilterTestsModel.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data
 {
    import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
index 40a144a..3d4d1fe 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestCaseData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data
 {
    import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
index 6d1a655..8467e42 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestFunctionRowData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data
 {
    import mx.formatters.NumberFormatter;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
index 4a6f86f..2c6c3ca 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/TestRunnerBasePresentationModel.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
index 1d7852b..d0250a0 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/AllTestFunctionStatus.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
index 7d588a9..4aba6a1 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/EmptyTestFunctionStatus.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
index 7743cf6..597563c 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ErrorTestFunctionStatus.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
index 77a497b..33b3d87 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/ITestFunctionStatus.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.data.TestFunctionRowData;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/IgnoredTestFunctionStatus.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/IgnoredTestFunctionStatus.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/IgnoredTestFunctionStatus.as
index 07e6f04..a734806 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/IgnoredTestFunctionStatus.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/IgnoredTestFunctionStatus.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data.filter
 {
    import org.flexunit.flexui.controls.FlexUnitLabels;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
index df96745..46d8b9d 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/data/filter/TestfFunctionStatuses.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.data.filter
 {
    public class TestfFunctionStatuses

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
index b49bc42..4fcdb48 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestRunnerBasePresentationModelProperyChangedEvent.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.event
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
index 8c0ea6f..22ab0f7 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/event/TestsCompleteEvent.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.event
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
index 8c2b7b5..a558a80 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AbstractPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import org.flexunit.flexui.data.TestFunctionRowData;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
index f37e2f6..50c585f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertContainedPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
index ff896aa..47a1948 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEqualsPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
index 88081cb..1fa2778 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertEventOcurredPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
index a7162b5..5989dc4 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertMatchPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
index e32aa60..c4d0114 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNoMatchPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
index 6190e0e..0209def 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotContainedPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
index d647892..c12ef1f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotNullPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
index c0e36d5..6fff9ed 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNotUndefinedPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
index 8b15c40..0b8f4a6 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertNullPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;


[34/41] git commit: added Apache license header

Posted by cz...@apache.org.
added Apache license header


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/8d0f8f20
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/8d0f8f20
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/8d0f8f20

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 8d0f8f20933281e7ef3a68670629374150aae16b
Parents: 0abaaf7
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sun May 19 22:49:59 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sun May 19 22:49:59 2013 +0800

----------------------------------------------------------------------
 FlexUnit4/pmd-ruleset.xml                          |   17 +
 FlexUnit4AntTasks/src/TestRunner.template          |   16 +
 FlexUnit4AntTasks/src/flexUnitDescriptor.template  |   16 +
 FlexUnit4AntTasks/src/flexUnitTasks.tasks          |   15 +
 FlexUnit4SampleCIProject/build.air.xml             |   17 +
 FlexUnit4SampleCIProject/build.browser.xml         |   17 +
 FlexUnit4SampleCIProject/build.custom.xml          |   17 +
 FlexUnit4SampleCIProject/build.xml                 |   17 +
 FlexUnit4SampleCIProject/pom.xml                   |   17 +
 .../src/org/flexunit/flexui/TestRunnerBase.mxml    |  592 ++++++++++++++-
 .../flexunit/flexui/controls/PromptingTextInput.as |   16 +
 pom.template                                       |   17 +
 utils.xml                                          |   17 +
 13 files changed, 775 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4/pmd-ruleset.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4/pmd-ruleset.xml b/FlexUnit4/pmd-ruleset.xml
index c889adb..7334983 100644
--- a/FlexUnit4/pmd-ruleset.xml
+++ b/FlexUnit4/pmd-ruleset.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <ruleset name="All Flex Rules" xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd" xmlns="http://pmd.sf.net/ruleset/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <description/>
   <rule since="" class="com.adobe.ac.pmd.rules.architecture.ViewComponentReferencedInModelRule" message="A view component should not be referenced in a model class">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4AntTasks/src/TestRunner.template
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/TestRunner.template b/FlexUnit4AntTasks/src/TestRunner.template
index b413fbf..8af69ac 100644
--- a/FlexUnit4AntTasks/src/TestRunner.template
+++ b/FlexUnit4AntTasks/src/TestRunner.template
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <@APPLICATION_PREFIX@:@APPLICATION_CLASS@ 
 @NAMESPACES@ 
 creationComplete="runTests();">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4AntTasks/src/flexUnitDescriptor.template
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/flexUnitDescriptor.template b/FlexUnit4AntTasks/src/flexUnitDescriptor.template
index 9dcf2a4..e38527c 100644
--- a/FlexUnit4AntTasks/src/flexUnitDescriptor.template
+++ b/FlexUnit4AntTasks/src/flexUnitDescriptor.template
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8" standalone="no"?>
+<!--
+  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.
+-->
 <application xmlns="http://ns.adobe.com/air/application/@ADT_VERSION@">
 	<id>FlexUnit4AdlWrapper</id>
 	<filename>FlexUnit4AdlWrapper</filename>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4AntTasks/src/flexUnitTasks.tasks
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/flexUnitTasks.tasks b/FlexUnit4AntTasks/src/flexUnitTasks.tasks
index 4a0339a..9610cf0 100644
--- a/FlexUnit4AntTasks/src/flexUnitTasks.tasks
+++ b/FlexUnit4AntTasks/src/flexUnitTasks.tasks
@@ -1 +1,16 @@
+# 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.
+
 flexunit=org.flexunit.ant.tasks.FlexUnitTask

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4SampleCIProject/build.air.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/build.air.xml b/FlexUnit4SampleCIProject/build.air.xml
index c786cac..f957f0a 100644
--- a/FlexUnit4SampleCIProject/build.air.xml
+++ b/FlexUnit4SampleCIProject/build.air.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <!-- 
 	This is intended to be a simple build file, created a suggestion for the necessary steps need to utilize the FlexUnit4 Ant task.
 	For the most detail when running this build, call "ant -v clean package".  The build uses a simple lifecycle of: 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4SampleCIProject/build.browser.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/build.browser.xml b/FlexUnit4SampleCIProject/build.browser.xml
index eadf841..c886d5c 100644
--- a/FlexUnit4SampleCIProject/build.browser.xml
+++ b/FlexUnit4SampleCIProject/build.browser.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <!-- 
 	This is intended to be a simple build file, created a suggestion for the necessary steps need to utilize the FlexUnit4 Ant task.
 	For the most detail when running this build, call "ant -v clean package".  The build uses a simple lifecycle of: 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4SampleCIProject/build.custom.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/build.custom.xml b/FlexUnit4SampleCIProject/build.custom.xml
index e92d979..db298d6 100644
--- a/FlexUnit4SampleCIProject/build.custom.xml
+++ b/FlexUnit4SampleCIProject/build.custom.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <!-- 
 	This is intended to be a simple build file, created a suggestion for the necessary steps need to utilize the FlexUnit4 Ant task.
 	For the most detail when running this build, call "ant -v clean package".  The build uses a simple lifecycle of: 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4SampleCIProject/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/build.xml b/FlexUnit4SampleCIProject/build.xml
index cbfe247..339e537 100644
--- a/FlexUnit4SampleCIProject/build.xml
+++ b/FlexUnit4SampleCIProject/build.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <!-- 
 	This is intended to be a simple build file, created a suggestion for the necessary steps need to utilize the FlexUnit4 Ant task.
 	For the most detail when running this build, call "ant -v clean package".  The build uses a simple lifecycle of: 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4SampleCIProject/pom.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/pom.xml b/FlexUnit4SampleCIProject/pom.xml
index e4776a8..7e2bed6 100644
--- a/FlexUnit4SampleCIProject/pom.xml
+++ b/FlexUnit4SampleCIProject/pom.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <!-- 
    Please note that this build file is an example of how to implement FlexMojos to execute all tests for a project following
    Maven conventions.  This is just one possible way to utilize FlexMojos and Maven.  Please note, this build will fail

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml b/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
index c099b0b..80af8f9 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/TestRunnerBase.mxml
@@ -1,16 +1,576 @@
-<?xml version="1.0" encoding="utf-8"?>
<mx:Panel
   xmlns:mx="http://www.adobe.com/2006/mxml"
   xmlns="*"
   xmlns:data="org.flexunit.flexui.data.*"
   xmlns:controls="org.flexunit.flexui.controls.*"
   styleName="mainPanel"
   width="100%"
   height="100%"
   minHeight="500"
   minWidth="850"
   verticalScrollPolicy="off"
   horizontalScrollPolicy="off"
   modalTransparencyBlur="0"
   modalTransparency="0"
   implements="org.flexunit.runner.notification.ITemporalRunListener"
   creationComplete="handleCreationComplete()" >

   <mx:Metadata>
      [Event( name="testsComplete", type="org.flexunit.flexui.event.TestsCompleteEvent")]
   </mx:Metadata>
	<mx:Style>
		@font-face {
			font-family: "Myriad Pro SemiCond";
			src: url("/fonts/fonts.swf");
		}
		
		/* Font for anything else */
		@font-face {
			font-family: "Myriad Pro";
			src: url("/fonts/fonts.swf");
		}
		
		@font-face {
			font-family: "Myriad Pro";
			font-weight: bold;
			src: url("/fonts/fonts.swf");
		}
		
		/* Class-
 selectors are the only way to apply styles to components */
		.flexUnitApplication {
			backgroundColor: #3872b2;
			backgroundGradientColors: #3872b2, #0c1a3d;
			backgroundGradientAlphas: 1, 1;
			themeColor: #ffffff;
			color: #444444;
			fontFamily: "Myriad Pro";
			fontSize: 12;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
			modal-transparency-blur: 0;
			modal-transparency: 0;   
		}
		
		.myToolTip {
			fontFamily: "Myriad Pro";
			background-color: #3872b2;
			leading: 5;
		}
		
		.flexUnitVBox {
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitScrollBar
		{
			downArrowDisabledSkin: Embed(source="/skins/VScrollBar_downArrowDisabledSkin.png");
			downArrowDownSkin: Embed(source="/skins/VScrollBar_downArrowDownSkin.png");
			downArrowOverSkin: Embed(source="/skins/VScrollBar_downArrowOverSkin.png");
			downArrowUpSkin: Embed(source="/skins/VScrollBa
 r_downArrowUpSkin.png");
			thumbIcon: Embed(source="/skins/VScrollBar_thumbIcon.png");
			trackSkin: Embed(source="/skins/VScrollBar_trackSkin.png");
			upArrowDisabledSkin: Embed(source="/skins/VScrollBar_upArrowDisabledSkin.png");
			upArrowDownSkin: Embed(source="/skins/VScrollBar_upArrowDownSkin.png");
			upArrowOverSkin: Embed(source="/skins/VScrollBar_upArrowOverSkin.png");
			upArrowUpSkin: Embed(source="/skins/VScrollBar_upArrowUpSkin.png");
			thumbDownSkin: Embed(
				source="/skins/VScrollBar_thumbDownSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbOverSkin: Embed(
				source="/skins/VScrollBar_thumbOverSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
			thumbUpSkin: Embed(
				source="/skins/VScrollBar_thumbUpSkin.png",
				scaleGridLeft="1", scaleGridTop="5", 
				scaleGridRight="8", scaleGridBottom="44" );
		}
		
		.flexUnitDataGrid {
			alternatingItemColo
 rs: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
		}
		
		.flexUnitSlider {
			themeColor: #2863b4;
		}
		
		.flexUnitTree {
			alternatingItemColors: #ffffff, #f6f6f6;
			headerColors: #fcfcfc, #e5e5e5;
			verticalGridLineColor: #dcdcdc;
			useRollOver: false;
			rollOverColor: #cccccc;
			selectionColor: #2863b4;
			textSelectedColor: #ffffff;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.mainPanel {
			header-height: 0;
			vertical-gap: 2;
			borderSkin: Embed( 
				source="/skins/Panel_borderSkin.png", 
				scaleGridLeft="12", scaleGridTop="31", 
				scaleGridRight="265", scaleGridBottom="189" );	
			padding-top: 20;
			padding-left: 8;
			padding-right: 8;
		}
		
		.flexUnitTextInput {
			themeColor: #ffffff;
		}
		
		.flexUnitTextAreaWithBorder {
			borderSkin: E
 mbed(
				source="/skins/TextArea_borderSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="150", scaleGridBottom="18" );
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.flexUnitTextArea {
			borderStyle: none;
			backgroundAlpha: 0;
			paddingTop: 10;
			leading: 0;
			fontSize: 11;
			wordWrap: false;
			verticalScrollBarStyleName: flexUnitScrollBar;
			horizontalScrollBarStyleName: flexUnitScrollBar;
		}
		
		.panelTitleStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 24;
			textIndent: 20;
		}
		
		.panelTitleSubStyle {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 16;
		}
		
		.flexUnitHRule {
			strokeColor: #b9b9b9;
			strokeWidth: 2;
			shadowColor: #FFFFFF; 
		}
		
		.h1 {
			fontFamily: "Myriad Pro SemiCond";
			fontSize: 18;
		}
		
		.h2 {
			fontSize: 13;
		}
		
		.flexUnitComboBox {
			upSkin: Embed(
	
 			source="/skins/ComboBox_upSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			overSkin: Embed(
				source="/skins/ComboBox_overSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			downSkin: Embed(
				source="/skins/ComboBox_downSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			disabledSkin: Embed(
				source="/skins/ComboBox_disabledSkin.png",
				scaleGridLeft="4", scaleGridTop="4", 
				scaleGridRight="64", scaleGridBottom="18" );
			themeColor: #2863b4;
		}
		
		.flexUnitProgressBar
		{
			barColor: #51C148;
			trackSkin: Embed(
				source="/skins/ProgressBar_trackSkin.png",
				scaleGridLeft="1", scaleGridTop="0", 
				scaleGridRight="149", scaleGridBottom="3" );
			trackHeight: 11;
		}
		
		.flexUnitForm {
			paddingTop: 0;
			paddingBottom: 0;
			paddingLeft: 0;
			paddingRight: 0;
			verticalGap: -2;
		}
		
		.flex
 UnitFormItemLabel {
			color: #777777;
		}
		
		.flexUnitFormItemValue {
			color: #444444;
		}
		
		.flexUnitButtonBar
		{
			horizontalGap: -1;
			firstButtonStyleName: "firstButtonBarButton";
			lastButtonStyleName: "lastButtonBarButton";
		}
		
		.firstButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedDisabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Emb
 ed(
				source="/skins/ButtonBarFirstButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarFirstButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarFirstButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarFirstButton_upSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.lastButtonBarButton
		{
			disabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			downSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleG
 ridRight="40", scaleGridBottom="16" );
			overSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDisabledSkin: Embed(
				source="/skins/ButtonBarLastButton_disabledSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedDownSkin: Embed(
				source="/skins/ButtonBarLastButton_downSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedOverSkin: Embed(
				source="/skins/ButtonBarLastButton_overSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			selectedUpSkin: Embed(
				source="/skins/ButtonBarLastButton_selectedUpSkin.png",
				scaleGridLeft="6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
			upSkin: Embed(
				source="/skins/ButtonBarLastButton_upSkin.png",
				scaleGridLeft="
 6", scaleGridTop="6", 
				scaleGridRight="40", scaleGridBottom="16" );
		}
		
		.flexUnitControlBar {
			paddingTop: 5;
			paddingBottom: 2;
			paddingLeft: 4;
			paddingRight: 12;
			borderSkin: Embed(
				source="/skins/Panel_controlBarBackgroundSkin.png",
				scaleGridLeft="8", scaleGridTop="1", 
				scaleGridRight="270", scaleGridBottom="17" );
		}
	</mx:Style>
	   
   <mx:Script>
      <![CDATA[
		  import flash.net.navigateToURL;
		  
		  import mx.controls.ToolTip;
		  import mx.controls.listClasses.ListBase;
		  import mx.core.ScrollPolicy;
		  import mx.managers.ToolTipManager;
		  
		  import org.flexunit.Assert;
		  import flexunit.framework.Assert;
		  import org.flexunit.flexui.controls.FlexUnitLabels;
		  import org.flexunit.flexui.data.TestFunctionRowData;
		  import org.flexunit.flexui.event.TestsCompleteEvent;
		  import org.flexunit.runner.Description;
		  import org.flexunit.runner.Descriptor;
		  import org.flexunit.runner.FlexUnitCore;
		  import org.flexunit.r
 unner.IDescription;
		  import org.flexunit.runner.Result;
		  import org.flexunit.runner.notification.Failure;

         public var test : *;// TODO: [XB] was  Test;
		
		
		/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
		*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
		*  successes are both valid cases for a finished test.  With this variable, we can now prevent counting
		*  finished failures as successes.
		*/
		private var lastFailedTest:IDescription;
         private function handleCreationComplete() : void
         {
            ToolTip.maxWidth = 900;
            rightHandSide.model = model;
            leftHandSide.model = model;

            model.filterSectionEnabled = false;
         }

         public function startTest() : void
         {
            // if( test != null )
            {
               // model.totalTests = test.countTestCases(); // TODO: 
 [XB] reenable this

               model.launchTests();

               rightHandSide.launchTests();
               leftHandSide.launchTests();
            }
         }

         private function addTestToList(
                     description : IDescription,
                     failure : Failure = null,
                     ignored : Boolean = false,
					 assertionsMade: uint= 0 ) : void
         {
               var rowAdded : TestFunctionRowData;

               rowAdded = model.addTestRowToHierarchicalList( description, failure, ignored, lastRunTime, assertionsMade );
               
               leftHandSide.testCasesContainer.allTestsHierarchyTree.verticalScrollPosition 
                     = leftHandSide.testCasesContainer.allTestsHierarchyTree.maxVerticalScrollPosition;
               
               /*if( ! success )
               {
                  model.rowSelected = rowAdded;
//               }*/
         }

         //---------------------------------------------
 ------------------------
         // IFlexWriter Methods
         //---------------------------------------------------------------------
		public function testRunStarted( description:IDescription ):void {
			model.totalTests = description.testCount;
			this.startTest();
		}
		
		public function testRunFinished( result:Result ):void {
			rightHandSide.onAllTestsEnd();
            leftHandSide.onAllTestsEnd();

            dispatchEvent( new TestsCompleteEvent() );
		}
		
		private var lastRunTime:Number = 0;
		public function testStarted( description:IDescription ):void {
		}
	
		public function testFinished( description:IDescription ):void {
			if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               model.numTestsRun++;
               /* JT 5/28/09 - added this conditional to handle bugreport FXU-38, the testFinished method of 
               *  this class mistakenly assumed that any test which finished was successful.  This is not the 
 
               *  case, as failures and successes are both valid cases for a finished test.  
			   */
               if(!lastFailedTest || description.displayName != lastFailedTest.displayName){
				   var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
	               addTestToList( description, null, false, totalAssertions );
	           }

               rightHandSide.onTestEnd();
               
               //removed until we can make this work correctly across all cases
               rightHandSide.selectedTestCaseForm.assertionsPerTest.invalidateProperties();
            }
		}
	
		public function testFailure( failure:Failure ):void {
			/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
			*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
			*  successes are both valid cases for a finished test.  With this variab
 le, we can now prevent counting
			*  finished failures as successes.
			*/
			lastFailedTest = failure.description;
			model.addFailure();

			var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
            addTestToList( failure.description, failure, false, totalAssertions );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
		}
	
		public function testAssumptionFailure( failure:Failure ):void {
		}
	
		/**
		 * Called when a test will not be run, generally because a test method is annotated 
		 * with {@link org.junit.Ignore}.
		 * 
		 * @param description describes the test that will not be run
		 */
		public function testIgnored( description:IDescription ):void {
			model.addIgnore();

            addTestToList( description, null, true );
		}
		
		public function testTimed( description:IDescription, runTime:Number ):void {
			lastRunTime = runTime;
		}
		  
         /*
         public function onSuccess(
  test : Test ) : void
         {
            if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
            {
               addTestToList( true, test );
            }
         }

         public function onError( test : Test, error : Error ) : void
         {
            model.addError();
            
            addTestToList( false, test, error );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }

         public function onFailure(
                     test : Test,
                     error : AssertionFailedError ) : void
         {
            model.addFailure();

            addTestToList( false, test, error, true );

            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
         }*/

         // To replace Binding MetaTag
         private function updateRowSummaryToDisplay() : void
         {
            rightHandSide.updateRowSummaryToDisplay();
            leftHandSide.updateScrollPosition();
         
 }

      ]]>
   </mx:Script>

   <data:TestRunnerBasePresentationModel
      id="model"
      rowSelectedChanged="updateRowSummaryToDisplay()"
      testSuiteRunDurationChanged="rightHandSide.updateRunDuration()"
      totalErrorsChanged="rightHandSide.updateTotalErrorUI()"
      totalFailuresChanged="rightHandSide.updateTotalFailureUI()"
	  totalIgnoredChanged="rightHandSide.updateTotalIgnoredUI()"
      progressChanged="rightHandSide.onTestEnd()"
      filterEnableChanged="leftHandSide.updateFilterSectionEnable()"
      filterChanged="leftHandSide.refreshTree()"
      />
   
   <mx:HBox
      verticalAlign="bottom"
      horizontalGap="0">

      <controls:Title
         text="{ FlexUnitLabels.FLEXUNIT } {FlexUnitCore.version} { FlexUnitLabels.RUNNER }"
         styleName="panelTitleStyle"
         width="275"
         />
      
      <controls:Title
         text="{ FlexUnitLabels.POWERED_BY_ADOBE_CONSULTING }"
         styleName="panelTitleSubStyle"
         useHandCursor="true"
 
         buttonMode="true"
         mouseChildren= "false"
         click="navigateToURL( new URLRequest( 'http://www.adobe.com/consulting/' ) )"
         />
      
   </mx:HBox>
      
   <mx:HRule
      styleName="flexUnitHRule"
      width="100%"
      />
   
   <mx:HDividedBox
      width="100%" height="100%"
      horizontalGap="30"
      paddingTop="5"
      paddingBottom="30"
      paddingLeft="25"
      paddingRight="25">
   
      <controls:LeftHandSide
         id="leftHandSide"
         />
      
      <controls:RightHandSide
         id="rightHandSide"
         />
   
   </mx:HDividedBox>

</mx:Panel><!--
-  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.
--->
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
+<mx:Panel
+   xmlns:mx="http://www.adobe.com/2006/mxml"
+   xmlns="*"
+   xmlns:data="org.flexunit.flexui.data.*"
+   xmlns:controls="org.flexunit.flexui.controls.*"
+   styleName="mainPanel"
+   width="100%"
+   height="100%"
+   minHeight="500"
+   minWidth="850"
+   verticalScrollPolicy="off"
+   horizontalScrollPolicy="off"
+   modalTransparencyBlur="0"
+   modalTransparency="0"
+   implements="org.flexunit.runner.notification.ITemporalRunListener"
+   creationComplete="handleCreationComplete()" >
+
+   <mx:Metadata>
+      [Event( name="testsComplete", type="org.flexunit.flexui.event.TestsCompleteEvent")]
+   </mx:Metadata>
+	<mx:Style>
+		@font-face {
+			font-family: "Myriad Pro SemiCond";
+			src: url("/fonts/fonts.swf");
+		}
+		
+		/* Font for anything else */
+		@font-face {
+			font-family: "Myriad Pro";
+			src: url("/fonts/fonts.swf");
+		}
+		
+		@font-face {
+			font-family: "Myriad Pro";
+			font-weight: bold;
+			src: url("/fonts/fonts.swf");
+		}
+		
+		/* Class-selectors are the only way to apply styles to components */
+		.flexUnitApplication {
+			backgroundColor: #3872b2;
+			backgroundGradientColors: #3872b2, #0c1a3d;
+			backgroundGradientAlphas: 1, 1;
+			themeColor: #ffffff;
+			color: #444444;
+			fontFamily: "Myriad Pro";
+			fontSize: 12;
+			verticalScrollBarStyleName: flexUnitScrollBar;
+			horizontalScrollBarStyleName: flexUnitScrollBar;
+			modal-transparency-blur: 0;
+			modal-transparency: 0;   
+		}
+		
+		.myToolTip {
+			fontFamily: "Myriad Pro";
+			background-color: #3872b2;
+			leading: 5;
+		}
+		
+		.flexUnitVBox {
+			verticalScrollBarStyleName: flexUnitScrollBar;
+			horizontalScrollBarStyleName: flexUnitScrollBar;
+		}
+		
+		.flexUnitScrollBar
+		{
+			downArrowDisabledSkin: Embed(source="/skins/VScrollBar_downArrowDisabledSkin.png");
+			downArrowDownSkin: Embed(source="/skins/VScrollBar_downArrowDownSkin.png");
+			downArrowOverSkin: Embed(source="/skins/VScrollBar_downArrowOverSkin.png");
+			downArrowUpSkin: Embed(source="/skins/VScrollBar_downArrowUpSkin.png");
+			thumbIcon: Embed(source="/skins/VScrollBar_thumbIcon.png");
+			trackSkin: Embed(source="/skins/VScrollBar_trackSkin.png");
+			upArrowDisabledSkin: Embed(source="/skins/VScrollBar_upArrowDisabledSkin.png");
+			upArrowDownSkin: Embed(source="/skins/VScrollBar_upArrowDownSkin.png");
+			upArrowOverSkin: Embed(source="/skins/VScrollBar_upArrowOverSkin.png");
+			upArrowUpSkin: Embed(source="/skins/VScrollBar_upArrowUpSkin.png");
+			thumbDownSkin: Embed(
+				source="/skins/VScrollBar_thumbDownSkin.png",
+				scaleGridLeft="1", scaleGridTop="5", 
+				scaleGridRight="8", scaleGridBottom="44" );
+			thumbOverSkin: Embed(
+				source="/skins/VScrollBar_thumbOverSkin.png",
+				scaleGridLeft="1", scaleGridTop="5", 
+				scaleGridRight="8", scaleGridBottom="44" );
+			thumbUpSkin: Embed(
+				source="/skins/VScrollBar_thumbUpSkin.png",
+				scaleGridLeft="1", scaleGridTop="5", 
+				scaleGridRight="8", scaleGridBottom="44" );
+		}
+		
+		.flexUnitDataGrid {
+			alternatingItemColors: #ffffff, #f6f6f6;
+			headerColors: #fcfcfc, #e5e5e5;
+			verticalGridLineColor: #dcdcdc;
+			useRollOver: false;
+			rollOverColor: #cccccc;
+			selectionColor: #2863b4;
+			textSelectedColor: #ffffff;
+		}
+		
+		.flexUnitSlider {
+			themeColor: #2863b4;
+		}
+		
+		.flexUnitTree {
+			alternatingItemColors: #ffffff, #f6f6f6;
+			headerColors: #fcfcfc, #e5e5e5;
+			verticalGridLineColor: #dcdcdc;
+			useRollOver: false;
+			rollOverColor: #cccccc;
+			selectionColor: #2863b4;
+			textSelectedColor: #ffffff;
+			verticalScrollBarStyleName: flexUnitScrollBar;
+			horizontalScrollBarStyleName: flexUnitScrollBar;
+		}
+		
+		.mainPanel {
+			header-height: 0;
+			vertical-gap: 2;
+			borderSkin: Embed( 
+				source="/skins/Panel_borderSkin.png", 
+				scaleGridLeft="12", scaleGridTop="31", 
+				scaleGridRight="265", scaleGridBottom="189" );	
+			padding-top: 20;
+			padding-left: 8;
+			padding-right: 8;
+		}
+		
+		.flexUnitTextInput {
+			themeColor: #ffffff;
+		}
+		
+		.flexUnitTextAreaWithBorder {
+			borderSkin: Embed(
+				source="/skins/TextArea_borderSkin.png",
+				scaleGridLeft="4", scaleGridTop="4", 
+				scaleGridRight="150", scaleGridBottom="18" );
+			paddingTop: 10;
+			leading: 0;
+			fontSize: 11;
+			wordWrap: false;
+			verticalScrollBarStyleName: flexUnitScrollBar;
+			horizontalScrollBarStyleName: flexUnitScrollBar;
+		}
+		
+		.flexUnitTextArea {
+			borderStyle: none;
+			backgroundAlpha: 0;
+			paddingTop: 10;
+			leading: 0;
+			fontSize: 11;
+			wordWrap: false;
+			verticalScrollBarStyleName: flexUnitScrollBar;
+			horizontalScrollBarStyleName: flexUnitScrollBar;
+		}
+		
+		.panelTitleStyle {
+			fontFamily: "Myriad Pro SemiCond";
+			fontSize: 24;
+			textIndent: 20;
+		}
+		
+		.panelTitleSubStyle {
+			fontFamily: "Myriad Pro SemiCond";
+			fontSize: 16;
+		}
+		
+		.flexUnitHRule {
+			strokeColor: #b9b9b9;
+			strokeWidth: 2;
+			shadowColor: #FFFFFF; 
+		}
+		
+		.h1 {
+			fontFamily: "Myriad Pro SemiCond";
+			fontSize: 18;
+		}
+		
+		.h2 {
+			fontSize: 13;
+		}
+		
+		.flexUnitComboBox {
+			upSkin: Embed(
+				source="/skins/ComboBox_upSkin.png",
+				scaleGridLeft="4", scaleGridTop="4", 
+				scaleGridRight="64", scaleGridBottom="18" );
+			overSkin: Embed(
+				source="/skins/ComboBox_overSkin.png",
+				scaleGridLeft="4", scaleGridTop="4", 
+				scaleGridRight="64", scaleGridBottom="18" );
+			downSkin: Embed(
+				source="/skins/ComboBox_downSkin.png",
+				scaleGridLeft="4", scaleGridTop="4", 
+				scaleGridRight="64", scaleGridBottom="18" );
+			disabledSkin: Embed(
+				source="/skins/ComboBox_disabledSkin.png",
+				scaleGridLeft="4", scaleGridTop="4", 
+				scaleGridRight="64", scaleGridBottom="18" );
+			themeColor: #2863b4;
+		}
+		
+		.flexUnitProgressBar
+		{
+			barColor: #51C148;
+			trackSkin: Embed(
+				source="/skins/ProgressBar_trackSkin.png",
+				scaleGridLeft="1", scaleGridTop="0", 
+				scaleGridRight="149", scaleGridBottom="3" );
+			trackHeight: 11;
+		}
+		
+		.flexUnitForm {
+			paddingTop: 0;
+			paddingBottom: 0;
+			paddingLeft: 0;
+			paddingRight: 0;
+			verticalGap: -2;
+		}
+		
+		.flexUnitFormItemLabel {
+			color: #777777;
+		}
+		
+		.flexUnitFormItemValue {
+			color: #444444;
+		}
+		
+		.flexUnitButtonBar
+		{
+			horizontalGap: -1;
+			firstButtonStyleName: "firstButtonBarButton";
+			lastButtonStyleName: "lastButtonBarButton";
+		}
+		
+		.firstButtonBarButton
+		{
+			disabledSkin: Embed(
+				source="/skins/ButtonBarFirstButton_disabledSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			downSkin: Embed(
+				source="/skins/ButtonBarFirstButton_downSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			overSkin: Embed(
+				source="/skins/ButtonBarFirstButton_overSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedDisabledSkin: Embed(
+				source="/skins/ButtonBarFirstButton_selectedDisabledSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedDownSkin: Embed(
+				source="/skins/ButtonBarFirstButton_downSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedOverSkin: Embed(
+				source="/skins/ButtonBarFirstButton_overSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedUpSkin: Embed(
+				source="/skins/ButtonBarFirstButton_selectedUpSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			upSkin: Embed(
+				source="/skins/ButtonBarFirstButton_upSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+		}
+		
+		.lastButtonBarButton
+		{
+			disabledSkin: Embed(
+				source="/skins/ButtonBarLastButton_disabledSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			downSkin: Embed(
+				source="/skins/ButtonBarLastButton_downSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			overSkin: Embed(
+				source="/skins/ButtonBarLastButton_overSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedDisabledSkin: Embed(
+				source="/skins/ButtonBarLastButton_disabledSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedDownSkin: Embed(
+				source="/skins/ButtonBarLastButton_downSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedOverSkin: Embed(
+				source="/skins/ButtonBarLastButton_overSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			selectedUpSkin: Embed(
+				source="/skins/ButtonBarLastButton_selectedUpSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+			upSkin: Embed(
+				source="/skins/ButtonBarLastButton_upSkin.png",
+				scaleGridLeft="6", scaleGridTop="6", 
+				scaleGridRight="40", scaleGridBottom="16" );
+		}
+		
+		.flexUnitControlBar {
+			paddingTop: 5;
+			paddingBottom: 2;
+			paddingLeft: 4;
+			paddingRight: 12;
+			borderSkin: Embed(
+				source="/skins/Panel_controlBarBackgroundSkin.png",
+				scaleGridLeft="8", scaleGridTop="1", 
+				scaleGridRight="270", scaleGridBottom="17" );
+		}
+	</mx:Style>
+	   
+   <mx:Script>
+      <![CDATA[
+		  import flash.net.navigateToURL;
+		  
+		  import mx.controls.ToolTip;
+		  import mx.controls.listClasses.ListBase;
+		  import mx.core.ScrollPolicy;
+		  import mx.managers.ToolTipManager;
+		  
+		  import org.flexunit.Assert;
+		  import flexunit.framework.Assert;
+		  import org.flexunit.flexui.controls.FlexUnitLabels;
+		  import org.flexunit.flexui.data.TestFunctionRowData;
+		  import org.flexunit.flexui.event.TestsCompleteEvent;
+		  import org.flexunit.runner.Description;
+		  import org.flexunit.runner.Descriptor;
+		  import org.flexunit.runner.FlexUnitCore;
+		  import org.flexunit.runner.IDescription;
+		  import org.flexunit.runner.Result;
+		  import org.flexunit.runner.notification.Failure;
+
+         public var test : *;// TODO: [XB] was  Test;
+		
+		
+		/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
+		*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
+		*  successes are both valid cases for a finished test.  With this variable, we can now prevent counting
+		*  finished failures as successes.
+		*/
+		private var lastFailedTest:IDescription;
+         private function handleCreationComplete() : void
+         {
+            ToolTip.maxWidth = 900;
+            rightHandSide.model = model;
+            leftHandSide.model = model;
+
+            model.filterSectionEnabled = false;
+         }
+
+         public function startTest() : void
+         {
+            // if( test != null )
+            {
+               // model.totalTests = test.countTestCases(); // TODO: [XB] reenable this
+
+               model.launchTests();
+
+               rightHandSide.launchTests();
+               leftHandSide.launchTests();
+            }
+         }
+
+         private function addTestToList(
+                     description : IDescription,
+                     failure : Failure = null,
+                     ignored : Boolean = false,
+					 assertionsMade: uint= 0 ) : void
+         {
+               var rowAdded : TestFunctionRowData;
+
+               rowAdded = model.addTestRowToHierarchicalList( description, failure, ignored, lastRunTime, assertionsMade );
+               
+               leftHandSide.testCasesContainer.allTestsHierarchyTree.verticalScrollPosition 
+                     = leftHandSide.testCasesContainer.allTestsHierarchyTree.maxVerticalScrollPosition;
+               
+               /*if( ! success )
+               {
+                  model.rowSelected = rowAdded;
+//               }*/
+         }
+
+         //---------------------------------------------------------------------
+         // IFlexWriter Methods
+         //---------------------------------------------------------------------
+		public function testRunStarted( description:IDescription ):void {
+			model.totalTests = description.testCount;
+			this.startTest();
+		}
+		
+		public function testRunFinished( result:Result ):void {
+			rightHandSide.onAllTestsEnd();
+            leftHandSide.onAllTestsEnd();
+
+            dispatchEvent( new TestsCompleteEvent() );
+		}
+		
+		private var lastRunTime:Number = 0;
+		public function testStarted( description:IDescription ):void {
+		}
+	
+		public function testFinished( description:IDescription ):void {
+			if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
+            {
+               model.numTestsRun++;
+               /* JT 5/28/09 - added this conditional to handle bugreport FXU-38, the testFinished method of 
+               *  this class mistakenly assumed that any test which finished was successful.  This is not the 
+               *  case, as failures and successes are both valid cases for a finished test.  
+			   */
+               if(!lastFailedTest || description.displayName != lastFailedTest.displayName){
+				   var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
+	               addTestToList( description, null, false, totalAssertions );
+	           }
+
+               rightHandSide.onTestEnd();
+               
+               //removed until we can make this work correctly across all cases
+               rightHandSide.selectedTestCaseForm.assertionsPerTest.invalidateProperties();
+            }
+		}
+	
+		public function testFailure( failure:Failure ):void {
+			/* JT 5/28/09 - added lastFailedTest to handle bugreport FXU-38, the testFinished method of this class
+			*  mistakenly assumed that any test which finished was successful.  This is not the case, as failures and 
+			*  successes are both valid cases for a finished test.  With this variable, we can now prevent counting
+			*  finished failures as successes.
+			*/
+			lastFailedTest = failure.description;
+			model.addFailure();
+
+			var totalAssertions:uint = flexunit.framework.Assert.assetionsMade + org.flexunit.Assert.assertionsMade;
+            addTestToList( failure.description, failure, false, totalAssertions );
+
+            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
+		}
+	
+		public function testAssumptionFailure( failure:Failure ):void {
+		}
+	
+		/**
+		 * Called when a test will not be run, generally because a test method is annotated 
+		 * with {@link org.junit.Ignore}.
+		 * 
+		 * @param description describes the test that will not be run
+		 */
+		public function testIgnored( description:IDescription ):void {
+			model.addIgnore();
+
+            addTestToList( description, null, true );
+		}
+		
+		public function testTimed( description:IDescription, runTime:Number ):void {
+			lastRunTime = runTime;
+		}
+		  
+         /*
+         public function onSuccess( test : Test ) : void
+         {
+            if( ! leftHandSide.testCasesContainer.allTestsHierarchyTree.selectable )
+            {
+               addTestToList( true, test );
+            }
+         }
+
+         public function onError( test : Test, error : Error ) : void
+         {
+            model.addError();
+            
+            addTestToList( false, test, error );
+
+            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
+         }
+
+         public function onFailure(
+                     test : Test,
+                     error : AssertionFailedError ) : void
+         {
+            model.addFailure();
+
+            addTestToList( false, test, error, true );
+
+            rightHandSide.selectedTestCaseViewStack.selectedIndex = 1;
+         }*/
+
+         // To replace Binding MetaTag
+         private function updateRowSummaryToDisplay() : void
+         {
+            rightHandSide.updateRowSummaryToDisplay();
+            leftHandSide.updateScrollPosition();
+         }
+
+      ]]>
+   </mx:Script>
+
+   <data:TestRunnerBasePresentationModel
+      id="model"
+      rowSelectedChanged="updateRowSummaryToDisplay()"
+      testSuiteRunDurationChanged="rightHandSide.updateRunDuration()"
+      totalErrorsChanged="rightHandSide.updateTotalErrorUI()"
+      totalFailuresChanged="rightHandSide.updateTotalFailureUI()"
+	  totalIgnoredChanged="rightHandSide.updateTotalIgnoredUI()"
+      progressChanged="rightHandSide.onTestEnd()"
+      filterEnableChanged="leftHandSide.updateFilterSectionEnable()"
+      filterChanged="leftHandSide.refreshTree()"
+      />
+   
+   <mx:HBox
+      verticalAlign="bottom"
+      horizontalGap="0">
+
+      <controls:Title
+         text="{ FlexUnitLabels.FLEXUNIT } {FlexUnitCore.version} { FlexUnitLabels.RUNNER }"
+         styleName="panelTitleStyle"
+         width="275"
+         />
+      
+      <controls:Title
+         text="{ FlexUnitLabels.POWERED_BY_ADOBE_CONSULTING }"
+         styleName="panelTitleSubStyle"
+         useHandCursor="true"
+         buttonMode="true"
+         mouseChildren= "false"
+         click="navigateToURL( new URLRequest( 'http://www.adobe.com/consulting/' ) )"
+         />
+      
+   </mx:HBox>
+      
+   <mx:HRule
+      styleName="flexUnitHRule"
+      width="100%"
+      />
+   
+   <mx:HDividedBox
+      width="100%" height="100%"
+      horizontalGap="30"
+      paddingTop="5"
+      paddingBottom="30"
+      paddingLeft="25"
+      paddingRight="25">
+   
+      <controls:LeftHandSide
+         id="leftHandSide"
+         />
+      
+      <controls:RightHandSide
+         id="rightHandSide"
+         />
+   
+   </mx:HDividedBox>
+
+</mx:Panel>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
index b79f640..27702eb 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/controls/PromptingTextInput.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.controls
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/pom.template
----------------------------------------------------------------------
diff --git a/pom.template b/pom.template
index 583eb80..81377e4 100644
--- a/pom.template
+++ b/pom.template
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<!--
+  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.
+-->
 <project>
    <modelVersion>4.0.0</modelVersion>
    

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8d0f8f20/utils.xml
----------------------------------------------------------------------
diff --git a/utils.xml b/utils.xml
index 2ec476a..b4915cb 100644
--- a/utils.xml
+++ b/utils.xml
@@ -1,3 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project>
    <macrodef name="gpg">
       <attribute name="todir" />


[10/41] git commit: removed adobe copyright header

Posted by cz...@apache.org.
removed adobe copyright header


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/0f812e35
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/0f812e35
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/0f812e35

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 0f812e359b7d250ce0ddbcbb246ac153b8482f0c
Parents: 4a6e50f
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat May 18 12:11:30 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat May 18 12:11:30 2013 +0800

----------------------------------------------------------------------
 .../flexUnit1/framework/AllFrameworkTests.as       |   31 +--
 .../flexUnit1/framework/AsynchronousTestCase.as    |  162 +++++++++++-
 .../framework/AsynchronousValueDispatcher.as       |   61 ++++-
 .../flexUnit1/framework/ErrorTestCase.as           |   25 ++-
 .../flexUnit1/framework/FailureTestCase.as         |    3 +-
 .../framework/SetupErrorTearDownTestCase.as        |    3 +-
 .../flexUnit1/framework/SetupErrorTestCase.as      |    3 +-
 .../flexUnit1/framework/SuccessTestCase.as         |    3 +-
 .../flexUnit1/framework/TearDownErrorTestCase.as   |    3 +-
 .../flexUnit1/framework/TearDownTestCase.as        |    3 +-
 .../flexUnit1/framework/TestAssert.as              |   31 +--
 .../flexUnit1/framework/TestAsynchronous.as        |    3 +-
 .../flexUnit1/framework/TestEventfulTestCase.as    |   29 --
 .../flexUnit1/framework/TestTestCase.as            |  219 ++++++++++++++-
 .../flexUnit1/framework/TestTestListener.as        |    3 +-
 .../flexUnit1/framework/ValueEvent.as              |    3 +-
 .../flexUnit1/framework/AllFrameworkTests.as       |   31 +--
 .../flexUnit1/framework/AsynchronousTestCase.as    |  162 +++++++++++-
 .../framework/AsynchronousValueDispatcher.as       |   61 ++++-
 .../flexUnit1/framework/ErrorTestCase.as           |   25 ++-
 .../flexUnit1/framework/FailureTestCase.as         |    3 +-
 .../framework/SetupErrorTearDownTestCase.as        |    3 +-
 .../flexUnit1/framework/SetupErrorTestCase.as      |    3 +-
 .../flexUnit1/framework/SuccessTestCase.as         |    3 +-
 .../flexUnit1/framework/TearDownErrorTestCase.as   |    3 +-
 .../flexUnit1/framework/TearDownTestCase.as        |    3 +-
 .../flexUnit1/framework/TestAssert.as              |   31 +--
 .../flexUnit1/framework/TestAsynchronous.as        |    3 +-
 .../flexUnit1/framework/TestEventfulTestCase.as    |   29 --
 .../flexUnit1/framework/TestTestCase.as            |  219 ++++++++++++++-
 .../flexUnit1/framework/TestTestListener.as        |    3 +-
 .../flexUnit1/framework/ValueEvent.as              |    3 +-
 .../src/org/flexunit/flexui/TestRunnerBase.mxml    |    2 +-
 .../org/flexunit/flexui/controls/FlexUnitLabels.as |   29 --
 .../org/flexunit/flexui/controls/LeftHandSide.mxml |   29 +--
 .../flexunit/flexui/controls/RightHandSide.mxml    |   29 +--
 .../src/org/flexunit/flexui/controls/Title.mxml    |   27 --
 .../flexunit/flexui/controls/left/FilterArea.mxml  |   29 +--
 .../flexui/controls/left/TestCasesTree.mxml        |   29 +--
 .../flexui/controls/left/events/SearchBarEvent.as  |   28 --
 .../itemRenderer/TestResultTreeItemRenderer.as     |   28 --
 .../flexui/controls/right/RunningTests.mxml        |   27 --
 .../controls/right/SelectedTestCaseForm.mxml       |   29 +--
 .../flexui/controls/right/StackTraceContainer.mxml |   27 --
 .../flexui/controls/right/TestsComplete.mxml       |   29 +--
 .../org/flexunit/flexui/data/AbstractRowData.as    |   28 --
 .../org/flexunit/flexui/data/FilterTestsModel.as   |   28 --
 .../src/org/flexunit/flexui/data/TestCaseData.as   |   28 --
 .../flexunit/flexui/data/TestFunctionRowData.as    |   28 --
 .../flexui/data/TestRunnerBasePresentationModel.as |   28 --
 .../flexui/data/filter/AllTestFunctionStatus.as    |   28 --
 .../flexui/data/filter/EmptyTestFunctionStatus.as  |   28 --
 .../flexui/data/filter/ErrorTestFunctionStatus.as  |   28 --
 .../flexui/data/filter/ITestFunctionStatus.as      |   28 --
 .../flexui/data/filter/TestfFunctionStatuses.as    |   28 --
 ...nnerBasePresentationModelProperyChangedEvent.as |   28 --
 .../flexunit/flexui/event/TestsCompleteEvent.as    |   28 --
 .../flexunit/flexui/patterns/AbstractPattern.as    |   28 --
 .../flexui/patterns/AssertContainedPattern.as      |   28 --
 .../flexui/patterns/AssertEqualsPattern.as         |   28 --
 .../flexui/patterns/AssertEventOcurredPattern.as   |   28 --
 .../flexunit/flexui/patterns/AssertMatchPattern.as |   28 --
 .../flexui/patterns/AssertNoMatchPattern.as        |   28 --
 .../flexui/patterns/AssertNotContainedPattern.as   |   28 --
 .../flexui/patterns/AssertNotNullPattern.as        |   28 --
 .../flexui/patterns/AssertNotUndefinedPattern.as   |   28 --
 .../flexunit/flexui/patterns/AssertNullPattern.as  |   28 --
 .../flexui/patterns/AssertUndefinedPattern.as      |   28 --
 .../flexui/patterns/FailAsyncCallPattern.as        |   28 --
 69 files changed, 933 insertions(+), 1251 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
index 5130393..37422bc 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
@@ -1,33 +1,4 @@
-/*
-	Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
-
-package flexUnitTests.flexUnit1.framework
+package flexUnitTests.flexUnit1.framework
 {
 
    import flexunit.framework.TestSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
index b2fb01e..1ef7756 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
@@ -1,3 +1,159 @@
-/*
	Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTAB
 ILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
*/

package flexUnitTests.flexUnit1.framework
{

   import flexunit.framework.*;
   
   public class AsynchronousTestCase extends TestCase
   {   
       public function AsynchronousTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           dispatcher = new AsynchronousValueDispatcher();
       }
   
       public functi
 on testInTimePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function testInTimeFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
       }
   
       public function testInTimeError() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchError(TIME_PASS);
       }
   
       public function testTooLatePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function testTooLateFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
   
         dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
       }
   
       public function testTooLateError() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
           dispatcher.dispatchError(TIME_FAIL);
       }
   
       public function handleValue(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
       }
   
-   
-       public function testSecondInTimePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassInTime, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleFirstValueThenPassInTime(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
       }
   
       public function testSecondInTimeFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailInTime, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleFirstValueThenFailInTime(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEqu
 als(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function testSecondTooLatePass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassTooLate, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleFirstValueThenPassTooLate(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
       }
   
       public function testSecondTooLateFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailTooLate, TIME_SYNC, VALUE_1));
           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
       }
   
       public function handleF
 irstValueThenFailTooLate(event : ValueEvent, expected : String) : void
       {
           var actual : String = event.value;
           Assert.assertEquals(expected, actual);
           addAsync(handleValue, TIME_SYNC, VALUE_2);
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutPass));
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function handleTimeoutPass(expected : String) : void
       {
           //do nothing, this should turn into a pass
       }
   
       public function testTimeoutFunctionFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutFail));
           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
       }
   
       public function handleTimeoutFail(expected : String) : 
 void
       {
           fail("async method not called in time");
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
           dispatcher.dispatchValue(VALUE_1, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
           dispatcher.dispatchValue(VALUE_2, 0);
       }
   
       private var dispatcher : AsynchronousValueDispatcher;
   
       private static var VALUE_1 : String = "value1";
       private static var VALUE_2 : String = "value2";
       public static var TIME_PASS : int = 50;
       public static var TIME_FAIL : int = 250;
       public static var TIME_SYNC : int = 100;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
+{
+
+   import flexunit.framework.*;
+   
+   public class AsynchronousTestCase extends TestCase
+   {   
+       public function AsynchronousTestCase(name : String)
+       {
+           super(name);
+       }
+   
+       override public function setUp() : void
+       {
+           dispatcher = new AsynchronousValueDispatcher();
+       }
+   
+       public function testInTimePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function testInTimeFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
+       }
+   
+       public function testInTimeError() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchError(TIME_PASS);
+       }
+   
+       public function testTooLatePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function testTooLateFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
+       }
+   
+       public function testTooLateError() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchError(TIME_FAIL);
+       }
+   
+       public function handleValue(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+       }
+   
+   
+       public function testSecondInTimePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassInTime, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenPassInTime(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_2, TIME_PASS);
+       }
+   
+       public function testSecondInTimeFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailInTime, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenFailInTime(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function testSecondTooLatePass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenPassTooLate, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenPassTooLate(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_2, TIME_FAIL);
+       }
+   
+       public function testSecondTooLateFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleFirstValueThenFailTooLate, TIME_SYNC, VALUE_1));
+           dispatcher.dispatchValue(VALUE_1, TIME_PASS);
+       }
+   
+       public function handleFirstValueThenFailTooLate(event : ValueEvent, expected : String) : void
+       {
+           var actual : String = event.value;
+           Assert.assertEquals(expected, actual);
+           addAsync(handleValue, TIME_SYNC, VALUE_2);
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function testTimeoutFunctionPass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutPass));
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function handleTimeoutPass(expected : String) : void
+       {
+           //do nothing, this should turn into a pass
+       }
+   
+       public function testTimeoutFunctionFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleTimeoutFail));
+           dispatcher.dispatchValue(VALUE_1, TIME_FAIL);
+       }
+   
+       public function handleTimeoutFail(expected : String) : void
+       {
+           fail("async method not called in time");
+       }
+   
+       public function testNotReallyAsynchronousPass() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
+           dispatcher.dispatchValue(VALUE_1, 0);
+       }
+   
+       public function testNotReallyAsynchronousFail() : void
+       {
+           dispatcher.addEventListener("value", addAsync(handleValue, TIME_SYNC, VALUE_1, handleValue));
+           dispatcher.dispatchValue(VALUE_2, 0);
+       }
+   
+       private var dispatcher : AsynchronousValueDispatcher;
+   
+       private static var VALUE_1 : String = "value1";
+       private static var VALUE_2 : String = "value2";
+       public static var TIME_PASS : int = 50;
+       public static var TIME_FAIL : int = 250;
+       public static var TIME_SYNC : int = 100;
+   }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
index 071e7c1..d1e60c1 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
@@ -1,3 +1,58 @@
-/*
-	Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILI
 TY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.EventDispatcher;
   
   import flash.utils.Timer;
   
   public class AsynchronousValueDispatcher extends EventDispatcher
   {
       public function AsynchronousValueDispatcher()
       {
           timer = new Timer(100, 1);
           timer.addEventListener("timer", timeout);
       }
   
       public function dispatchValue(value : String, time : int) : void
       {
           this.value = value;
           if (time > 0)
           {
               //BUG 114824 WORKAROUND - This bug is marked as fixed, but removing
               //the workaround causes the unit tests to fail. Need to look into this.
               timer = new Timer(time, 1);
               timer.addEventListener("timer", timeout);
               //END WORKAROUND
               //timer.delay = time;
               timer.start();
           }
           else
           {
               timeout(null);
           }
 
       }
   
       public function dispatchError(time : int) : void
       {
           dispatchValue("ERROR", time);
       }
   
   
       public function timeout(event : Event) : void
       {
           if (value == "ERROR")
           {
               throw new Error();
           }
           else
           {
               dispatchEvent(new ValueEvent(value));
           }
       }
   
       private var timer : Timer;
       private var value : String;
   
   }

}
+package flexUnitTests.flexUnit1.framework
+{
+   import flash.events.Event;
+   import flash.events.EventDispatcher;
+   
+   import flash.utils.Timer;
+   
+   public class AsynchronousValueDispatcher extends EventDispatcher
+   {
+       public function AsynchronousValueDispatcher()
+       {
+           timer = new Timer(100, 1);
+           timer.addEventListener("timer", timeout);
+       }
+   
+       public function dispatchValue(value : String, time : int) : void
+       {
+           this.value = value;
+           if (time > 0)
+           {
+               //BUG 114824 WORKAROUND - This bug is marked as fixed, but removing
+               //the workaround causes the unit tests to fail. Need to look into this.
+               timer = new Timer(time, 1);
+               timer.addEventListener("timer", timeout);
+               //END WORKAROUND
+               //timer.delay = time;
+               timer.start();
+           }
+           else
+           {
+               timeout(null);
+           }
+       }
+   
+       public function dispatchError(time : int) : void
+       {
+           dispatchValue("ERROR", time);
+       }
+   
+   
+       public function timeout(event : Event) : void
+       {
+           if (value == "ERROR")
+           {
+               throw new Error();
+           }
+           else
+           {
+               dispatchEvent(new ValueEvent(value));
+           }
+       }
+   
+       private var timer : Timer;
+       private var value : String;
+   
+   }
+
+}

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
index 0418636..d9ac0b7 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
@@ -1,5 +1,20 @@
-/*
-	Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILI
 TY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class ErrorTestCase extends TestCase
   {
   
       public function ErrorTestCase(name : String):void
       {
           super(name);
       }
   
       public function throwError():void
       {
-          assertTrue( true ) 
          
-          throw new Error();
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
+{
+   import flexunit.framework.*;
+   
+   public class ErrorTestCase extends TestCase
+   {
+   
+       public function ErrorTestCase(name : String):void
+       {
+           super(name);
+       }
+   
+       public function throwError():void
+       {
+          assertTrue( true ) 
+          
+          throw new Error();
+       }
+   }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
index 064ce39..d22fe0d 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class FailureTestCase extends TestCase
   {
       public function FailureTestCase(name : String):void
       {
           super(name);
       }
   
       public function testFailure():void
       {
           fail("intentional failure");
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class FailureTestCase extends TestCase
   {
       public function FailureTestCase(name : String):void
       {
           super(name);
       }
   
       public function testFailure():void
       {
           fail("intentional failure");
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
index 5985d10..f6b7ed5 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTearDownTestCase extends TearDownTestCase
   {
       public function SetupErrorTearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();
       }
   
       public function testSuccess():void
       {
          assertTrue( true );
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTearDownTestCase extends TearDownTestCase
   {
       public function SetupErrorTearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();
       }
   
       public function testSuccess():void
       {
          assertTrue( true );
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
index 59ceeb9..53e77ee 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTestCase extends ErrorTestCase
   {
   
       public function SetupErrorTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();    
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTestCase extends ErrorTestCase
   {
   
       public function SetupErrorTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();    
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
index f35bd45..d81f74d 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANT
 ABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SuccessTestCase extends TestCase
   {
       public function SuccessTestCase(name : String):void
       {
           super(name);
       }
   
       public function testSuccess():void
       {
           expectedResult = true;
           
           assertTrue( expectedResult );
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SuccessTestCase extends TestCase
   {
       public function SuccessTestCase(name : String):void
       {
           super(name);
       }
   
       public function testSuccess():void
       {
           expectedResult = true;
           
           assertTrue( expectedResult );
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
index 52826c4..2b98218 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
@@ -1,2 +1 @@
-/*
Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABI
 LITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/

package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownErrorTestCase extends TearDownTestCase
   {
   
       public function TearDownErrorTestCase(name : String)
       {
           super(name);
       }
   
       public function testSuccess() : void
       {
          assertTrue( true );
       }
   
       override public function tearDown() : void
       {
           super.tearDown();
           throw new Error("tearDown");
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownErrorTestCase extends TearDownTestCase
   {
   
       public function TearDownErrorTestCase(name : String)
       {
           super(name);
       }
   
       public function testSuccess() : void
       {
          assertTrue( true );
       }
   
       override public function tearDown() : void
       {
           super.tearDown();
           throw new Error("tearDown");
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
index fa7563f..4b52d56 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANT
 ABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/
package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownTestCase extends ErrorTestCase
   {
   
       public function TearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function tearDown() : void
       {
           expectedResult = true;
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownTestCase extends ErrorTestCase
   {
   
       public function TearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function tearDown() : void
       {
           expectedResult = true;
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
index f0c5e02..447ff89 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
@@ -1,33 +1,4 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
-
-package flexUnitTests.flexUnit1.framework
+package flexUnitTests.flexUnit1.framework
 {
    import flexunit.framework.*;
    

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
index 2092002..34ac69e 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
@@ -1,2 +1 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANT
 ABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/
package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.TimerEvent;
   import flash.utils.Timer;
   
   import flexunit.framework.Assert;
   import flexunit.framework.TestCase;
   import flexunit.framework.TestResult;

   public class TestAsynchronous extends TestCase
   {
       public function TestAsynchronous(name : String = null)
       {
           super(name);
       }
   
       public function testInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a 
 dialog
       //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestInTimeError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLatePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dialog
  
      //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestTooLateError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testSecondInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLatePass() : void
       {
           var test : TestCase = new
  AsynchronousTestCase("testSecondTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testTimeoutFunctionFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           var test : Tes
 tCase = new AsynchronousTestCase("testNotReallyAsynchronousPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testNotReallyAsynchronousFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function shouldBeRun(event : Event, passedData : Object) : void
       {
           var result : TestResult = passedData.result;
           var expectedRun : int = passedData.expectedRun;
           var expectedFail : int = passedData.expectedFail;
           var expectedError : int = passedData.expectedError;
   
           Assert.assertEquals("result.runCount() is not correct", expectedRun, result.runCount());
           Assert.assertEquals("result.failureCount() is not correct",expectedFail, result.failureCount());
           Assert.assertEqu
 als("result.errorCount() is not correct", expectedError, result.errorCount());
       }
   
       private function initAsync(result : TestResult, expectedRun : int, expectedFail : int, expectedError : int):void
       {
           var data : Object = new Object();
           data.result = result;
           data.expectedRun = expectedRun;
           data.expectedFail = expectedFail;
           data.expectedError = expectedError;
           var t : Timer = new Timer(1000, 1);
           var helper : Function = addAsync(shouldBeRun, 1500, data, function():void { fail('shouldBeRun did not fire')} );
           t.addEventListener( TimerEvent.TIMER, helper );
           t.start();
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.TimerEvent;
   import flash.utils.Timer;
   
   import flexunit.framework.Assert;
   import flexunit.framework.TestCase;
   import flexunit.framework.TestResult;

   public class TestAsynchronous extends TestCase
   {
       public function TestAsynchronous(name : String = null)
       {
           super(name);
       }
   
       public function testInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dia
 log
       //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestInTimeError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLatePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dialog
     
   //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestTooLateError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testSecondInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLatePass() : void
       {
           var test : TestCase = new As
 ynchronousTestCase("testSecondTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testTimeoutFunctionFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           var test : TestCa
 se = new AsynchronousTestCase("testNotReallyAsynchronousPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testNotReallyAsynchronousFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function shouldBeRun(event : Event, passedData : Object) : void
       {
           var result : TestResult = passedData.result;
           var expectedRun : int = passedData.expectedRun;
           var expectedFail : int = passedData.expectedFail;
           var expectedError : int = passedData.expectedError;
   
           Assert.assertEquals("result.runCount() is not correct", expectedRun, result.runCount());
           Assert.assertEquals("result.failureCount() is not correct",expectedFail, result.failureCount());
           Assert.assertEquals
 ("result.errorCount() is not correct", expectedError, result.errorCount());
       }
   
       private function initAsync(result : TestResult, expectedRun : int, expectedFail : int, expectedError : int):void
       {
           var data : Object = new Object();
           data.result = result;
           data.expectedRun = expectedRun;
           data.expectedFail = expectedFail;
           data.expectedError = expectedError;
           var t : Timer = new Timer(1000, 1);
           var helper : Function = addAsync(shouldBeRun, 1500, data, function():void { fail('shouldBeRun did not fire')} );
           t.addEventListener( TimerEvent.TIMER, helper );
           t.start();
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
index 70f2d1e..e2831a0 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
@@ -1,32 +1,3 @@
-/*
-   Copyright (c) 2008. Adobe Systems Incorporated.
-   All rights reserved.
-
-   Redistribution and use in source and binary forms, with or without
-   modification, are permitted provided that the following conditions are met:
-
-     * Redistributions of source code must retain the above copyright notice,
-       this list of conditions and the following disclaimer.
-     * Redistributions in binary form must reproduce the above copyright notice,
-       this list of conditions and the following disclaimer in the documentation
-       and/or other materials provided with the distribution.
-     * Neither the name of Adobe Systems Incorporated nor the names of its
-       contributors may be used to endorse or promote products derived from this
-       software without specific prior written permission.
-
-   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-   POSSIBILITY OF SUCH DAMAGE.
-*/
-
 package flexUnitTests.flexUnit1.framework
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0f812e35/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
index a71525e..865e047 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
@@ -1,4 +1,215 @@
-/*
   Copyright (c) 2008. Adobe Systems Incorporated.
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

     * Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
     * Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
     * Neither the name of Adobe Systems Incorporated nor the names of its
       contributors may be used to endorse or promote products derived from this
       software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCH
 ANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   POSSIBILITY OF SUCH DAMAGE.
-*/
package flexUnitTests.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestCase extends TestCase
   {
       public function TestTestCase(name : String = null)
       {
           super(name);
       }
   
       public function testCaseToString() : void
       {
           Assert.assertEquals( "testCaseToString (flexUnitTests.flexUnit1.framework::TestTestCase)", toString() );
       }
   
   //------------------------------------------------------------------------------
   
       public function testError() : void
       {
           var error : ErrorTestCase = new ErrorTestCase("throwError");
           verifyError( error );
       }
   
   //------------------------------------------------------------------------------
   
       public function testRunAndTearDownFails() : void
       {
           var fails : TearDownErrorTestCase = new TearDownErrorTestCase("throwError");
           //MATT: because of the asynchronous support an error in tearDow
 n will now be an additional
           //error instead of overwriting the error that was thrown in the test run
           verifyError( fails, 2 );
           Assert.assertTrue( fails.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testSetupFails() : void
       {
           var fails : SetupErrorTestCase = new SetupErrorTestCase( "throwError" )
           verifyError( fails, 1 );
       }
   
   //------------------------------------------------------------------------------
   
       public function testSuccess() : void
       {
           var success : TestCase = new SuccessTestCase( "testSuccess" )
           verifySuccess( success );
       }
   
   //------------------------------------------------------------------------------
   
       public function testFailure() : void
       {
           var failure : TestCase = new FailureTestCase( "testFailure" )
           verifyFailure( fa
 ilure );
       }
   
   //------------------------------------------------------------------------------
   
       public function testTearDownAfterError() : void
       {
           var fails : TearDownTestCase = new TearDownTestCase("throwError");
           verifyError( fails );
           Assert.assertTrue( fails.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testTearDownFails() : void
       {
           var fails : TearDownErrorTestCase = new TearDownErrorTestCase( "testSuccess" )
           verifyError( fails );
       }
   
-   //------------------------------------------------------------------------------
   
-       public function testTearDownSetupFails() : void
       {
           var fails : SetupErrorTearDownTestCase = new SetupErrorTearDownTestCase("testSuccess");
           verifyError( fails );
           Assert.assertFalse( fails.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testWasRun() : void
       {
           var test : SuccessTestCase = new SuccessTestCase("testSuccess");
           test.run();
           Assert.assertTrue( test.expectedResult );
       }
   
   //------------------------------------------------------------------------------
   
       public function testExceptionRunningAndTearDown() : void
       {
           var t : TestCase = new TearDownErrorTestCase("testSuccess");
           var result : TestResult = new TestResult();
           t.runWithResult( result );
           var failure : TestFailure = TestFailure ( result.errorsIterator().next() );
           Asse
 rt.assertEquals( "tearDown", failure.thrownException().message );
       }
   
   //------------------------------------------------------------------------------
   
   //MATT: since the automatic test creation doesn't work anymore and we've verified other no-arg tests (in SuccessTestCase)
   //we should be cool without this one
   /*
       public function testNoArgTestCasePasses() : void
       {
           var t : Test = new TestSuite( NoArgTestCase );
           var result : TestResult = new TestResult();
           
           t.runWithResult(  result );
   
           Assert.assertEquals( 1, result.runCount() );
           Assert.assertEquals( 0, result.failureCount() );
           Assert.assertEquals( 0, result.errorCount() );
   
       }
   */
   
   //------------------------------------------------------------------------------
   
       public function testNamelessTestCase() : void
       {
           var test : TestCase = new TestCase();
           var result : TestRe
 sult = test.run();
           Assert.assertEquals( 
                     "result.runCount() is not correct", 
                     1, 
                     result.runCount() );
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     1, 
                     result.failureCount() );
           Assert.assertEquals( 
                     "result.errorCount() is not correct", 
                     0, 
                     result.errorCount()  );
           Assert.assertEquals( 
                     "No test method to run",
                     TestFailure( result.failuresIterator().next() ).thrownException().message );
           /*
           try
           {
               t.run();
               fail();
           }
           catch ( e: AssertionFailedError )
           {
           }
           */
       }
   
   //------------------------------------------------------------------------------
   
       private function ve
 rifyError( test : TestCase , errorCount : int = 1) : void
       {
           var result : TestResult = test.run();
           Assert.assertEquals( 
                     "result.runCount() is not correct", 
                     1, 
                     result.runCount() );
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     0, 
                     result.failureCount() );
           Assert.assertEquals( 
                     "result.errorCount() is not correct", 
                     errorCount, 
                     result.errorCount()  );
       }
       
   //------------------------------------------------------------------------------
   
       private function  verifyFailure( test : TestCase ) : void
       {
           var result : TestResult = test.run();
           Assert.assertEquals( 
                     "result.runCount() is not correct", 
                     1,  
                     result.runCount() )
 ;
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     1, 
                     result.failureCount()  );
           Assert.assertEquals(  
                     "result.errorCount() is not correct", 
                     0, 
                     result.errorCount() );
       }
   
   //------------------------------------------------------------------------------
   
       private function  verifySuccess( test : TestCase ) : void
       {
           var result : TestResult = test.run();
           Assert.assertEquals(  
                     "result.runCount() is not correct", 
                     1, 
                     result.runCount() );
           Assert.assertEquals( 
                     "result.failureCount() is not correct", 
                     0, 
                     result.failureCount() );
           Assert.assertEquals(   
                     "result.errorCount() is not correct", 
                     
 0, 
                     result.errorCount() );
       }
   }
}
\ No newline at end of file
+package flexUnitTests.flexUnit1.framework
+{
+   import flexunit.framework.*;
+   
+   public class TestTestCase extends TestCase
+   {
+       public function TestTestCase(name : String = null)
+       {
+           super(name);
+       }
+   
+       public function testCaseToString() : void
+       {
+           Assert.assertEquals( "testCaseToString (flexUnitTests.flexUnit1.framework::TestTestCase)", toString() );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testError() : void
+       {
+           var error : ErrorTestCase = new ErrorTestCase("throwError");
+           verifyError( error );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testRunAndTearDownFails() : void
+       {
+           var fails : TearDownErrorTestCase = new TearDownErrorTestCase("throwError");
+           //MATT: because of the asynchronous support an error in tearDown will now be an additional
+           //error instead of overwriting the error that was thrown in the test run
+           verifyError( fails, 2 );
+           Assert.assertTrue( fails.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testSetupFails() : void
+       {
+           var fails : SetupErrorTestCase = new SetupErrorTestCase( "throwError" )
+           verifyError( fails, 1 );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testSuccess() : void
+       {
+           var success : TestCase = new SuccessTestCase( "testSuccess" )
+           verifySuccess( success );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testFailure() : void
+       {
+           var failure : TestCase = new FailureTestCase( "testFailure" )
+           verifyFailure( failure );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testTearDownAfterError() : void
+       {
+           var fails : TearDownTestCase = new TearDownTestCase("throwError");
+           verifyError( fails );
+           Assert.assertTrue( fails.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testTearDownFails() : void
+       {
+           var fails : TearDownErrorTestCase = new TearDownErrorTestCase( "testSuccess" )
+           verifyError( fails );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testTearDownSetupFails() : void
+       {
+           var fails : SetupErrorTearDownTestCase = new SetupErrorTearDownTestCase("testSuccess");
+           verifyError( fails );
+           Assert.assertFalse( fails.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testWasRun() : void
+       {
+           var test : SuccessTestCase = new SuccessTestCase("testSuccess");
+           test.run();
+           Assert.assertTrue( test.expectedResult );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       public function testExceptionRunningAndTearDown() : void
+       {
+           var t : TestCase = new TearDownErrorTestCase("testSuccess");
+           var result : TestResult = new TestResult();
+           t.runWithResult( result );
+           var failure : TestFailure = TestFailure ( result.errorsIterator().next() );
+           Assert.assertEquals( "tearDown", failure.thrownException().message );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+   //MATT: since the automatic test creation doesn't work anymore and we've verified other no-arg tests (in SuccessTestCase)
+   //we should be cool without this one
+   /*
+       public function testNoArgTestCasePasses() : void
+       {
+           var t : Test = new TestSuite( NoArgTestCase );
+           var result : TestResult = new TestResult();
+           
+           t.runWithResult(  result );
+   
+           Assert.assertEquals( 1, result.runCount() );
+           Assert.assertEquals( 0, result.failureCount() );
+           Assert.assertEquals( 0, result.errorCount() );
+   
+       }
+   */
+   
+   //------------------------------------------------------------------------------
+   
+       public function testNamelessTestCase() : void
+       {
+           var test : TestCase = new TestCase();
+           var result : TestResult = test.run();
+           Assert.assertEquals( 
+                     "result.runCount() is not correct", 
+                     1, 
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     1, 
+                     result.failureCount() );
+           Assert.assertEquals( 
+                     "result.errorCount() is not correct", 
+                     0, 
+                     result.errorCount()  );
+           Assert.assertEquals( 
+                     "No test method to run",
+                     TestFailure( result.failuresIterator().next() ).thrownException().message );
+           /*
+           try
+           {
+               t.run();
+               fail();
+           }
+           catch ( e: AssertionFailedError )
+           {
+           }
+           */
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       private function verifyError( test : TestCase , errorCount : int = 1) : void
+       {
+           var result : TestResult = test.run();
+           Assert.assertEquals( 
+                     "result.runCount() is not correct", 
+                     1, 
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     0, 
+                     result.failureCount() );
+           Assert.assertEquals( 
+                     "result.errorCount() is not correct", 
+                     errorCount, 
+                     result.errorCount()  );
+       }
+       
+   //------------------------------------------------------------------------------
+   
+       private function  verifyFailure( test : TestCase ) : void
+       {
+           var result : TestResult = test.run();
+           Assert.assertEquals( 
+                     "result.runCount() is not correct", 
+                     1,  
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     1, 
+                     result.failureCount()  );
+           Assert.assertEquals(  
+                     "result.errorCount() is not correct", 
+                     0, 
+                     result.errorCount() );
+       }
+   
+   //------------------------------------------------------------------------------
+   
+       private function  verifySuccess( test : TestCase ) : void
+       {
+           var result : TestResult = test.run();
+           Assert.assertEquals(  
+                     "result.runCount() is not correct", 
+                     1, 
+                     result.runCount() );
+           Assert.assertEquals( 
+                     "result.failureCount() is not correct", 
+                     0, 
+                     result.failureCount() );
+           Assert.assertEquals(   
+                     "result.errorCount() is not correct", 
+                     0, 
+                     result.errorCount() );
+       }
+   }
+}
\ No newline at end of file


[31/41] git commit: removed jar and added download.xml to download dependencies (jar) during build process

Posted by cz...@apache.org.
removed jar and added download.xml to download dependencies (jar) during build process


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/d4b628a5
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/d4b628a5
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/d4b628a5

Branch: refs/heads/makeFlexUnitApacheReady
Commit: d4b628a5cc76dbd783fe00a7a691d09164f97db2
Parents: 3b173d7
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat May 18 21:35:56 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat May 18 21:35:56 2013 +0800

----------------------------------------------------------------------
 FlexUnit4AntTasks/build.xml                  |    6 +-
 FlexUnit4AntTasks/downloads.xml              |  262 +++++++++++++++++++++
 FlexUnit4AntTasks/lib/ant-1.7.1.jar          |  Bin 1323005 -> 0 bytes
 FlexUnit4AntTasks/lib/ant-launcher-1.7.1.jar |  Bin 12143 -> 0 bytes
 FlexUnit4AntTasks/lib/ant-testutil-1.7.1.jar |  Bin 14941 -> 0 bytes
 FlexUnit4AntTasks/lib/dom4j-1.6.1.jar        |  Bin 313898 -> 0 bytes
 FlexUnit4AntTasks/lib/jaxen-1.1-beta-6.jar   |  Bin 244330 -> 0 bytes
 FlexUnit4AntTasks/lib/junit-3.8.1.jar        |  Bin 121070 -> 0 bytes
 8 files changed, 267 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/build.xml b/FlexUnit4AntTasks/build.xml
index d41cf5d..7bb004e 100644
--- a/FlexUnit4AntTasks/build.xml
+++ b/FlexUnit4AntTasks/build.xml
@@ -38,6 +38,10 @@
    <target name="clean">
       <delete dir="${dist.loc}" />
    </target>
+   
+    <target name="prebuild">
+		<ant antfile="${basedir}/downloads.xml" dir="${basedir}" />
+    </target>
 
    <target name="init">
       <mkdir dir="${dist.loc}" />
@@ -46,7 +50,7 @@
       <mkdir dir="${doc.loc}" />
    </target>
 
-   <target name="compile" depends="init">
+   <target name="compile" depends="init, prebuild">
       <javac target="1.5" source="1.5" fork="true" memoryMaximumSize="256m" srcdir="${src.loc}" failonerror="yes" verbose="false" nowarn="true" destdir="${bin.loc}">
          <classpath>
             <fileset dir="${lib.loc}">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/downloads.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/downloads.xml b/FlexUnit4AntTasks/downloads.xml
new file mode 100644
index 0000000..1f6e26f
--- /dev/null
+++ b/FlexUnit4AntTasks/downloads.xml
@@ -0,0 +1,262 @@
+<?xml version="1.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.
+
+-->
+
+<project name="downloads" default="main" basedir=".">
+	
+    <pathconvert property="compiler.tests" dirsep="/">
+        <path location="${basedir}"/>
+    </pathconvert>
+
+    <property name="lib.dir" value="${compiler.tests}/lib"/>
+    
+	<property name="download.dir" value="${compiler.tests}/in"/>
+    
+	<!-- 
+	   Notes:
+	       For Apache, the JARS must be removed from the repository.
+	       
+	       Licenses:
+            JUnit (3.8.1) - CPL 1.0  
+			Ant (1.7.1) -  ?
+			Ant launcher (1.7.1) -  ?
+			Ant testutil (1.7.1) -  ?
+			dom4j (1.6.1) -  ?
+			jaxen (1.1) -  ?
+	-->
+		     
+    <!-- 
+        Because the downloads requires a network connection and the JARs don't change very often, 
+        they are each downloaded only if they don't already exist. 
+    -->
+    
+	<target name="main" depends="prepare, junit-jar, ant-jar, ant-launcher-jar, ant-testutil-jar, dom4j-jar, jaxen-jar"
+		    description="Downloads all the required thirdparty JARs"/>
+
+    <target name="prepare" >
+        <mkdir dir="${lib.dir}" />
+    </target>
+    
+    <!--
+		Cleanup
+	-->
+	
+    <target name="clean" 
+            description="Removes thirdparty downloads.">
+        <delete includeEmptyDirs="true" failonerror="false">
+            <fileset dir="${download.dir}">
+                <include name="junit*/**"/>
+				<include name="ant*/**"/>
+				<include name="dom4j*/**"/>
+				<include name="jaxen*/**"/>
+            </fileset>
+        </delete>
+    </target>
+    
+    <!--
+	    Download thirdparty JARs    
+	-->
+
+    <!--
+        Download a jar file and optionally verify the checksum.
+        If the checksum fails, this script fails.
+        
+        Params are:
+            srcUrl
+            srcJarFile
+            destJarFile
+            [md5]
+    -->
+    <target name="download-jar" 
+            description="Downloads jar, and optionally verifies checksum.">                    
+        <get src="${srcUrl}/${srcJarFile}" dest="${destJarFile}"/>
+        <checksum file="${destJarFile}" algorithm="MD5" property="${we.failed}"/>
+        <antcall target="fail-with-message">
+            <param name="message" value="Checksum mismatch for ${destJarFile}"/>
+        </antcall>
+    </target>
+
+    <target name="fail-with-message" if="we.failed" 
+            description="Conditionally fails with the specified message">                
+        <fail message="${message}"/>
+    </target>
+        
+    <!--
+        junit
+    -->
+    
+    <target name="junit-jar-check" description="Checks if JUnit JAR exists.">
+    	<condition property="junit.jar.exists">
+    	    <and>
+    	        <available file="${lib.dir}/junit-3.8.1.jar"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="junit-jar" depends="junit-jar-check" unless="junit.jar.exists"
+            description="Copies the JUnit JAR to the lib directory.">
+        <echo message="Obtaining lib/junit-3.8.1.jar"/>
+        <antcall target="junit-download-jar"/>
+    </target>
+    
+    <target name="junit-download-jar" depends="junit-jar-check" unless="junit.jar.exists"
+            description="Downloads the JUnit jar.">
+        <antcall target="download-jar">
+            <param name="srcUrl" value="http://search.maven.org/remotecontent?filepath=junit/junit/3.8.1"/>
+            <param name="srcJarFile" value="junit-3.8.1.jar"/>
+            <param name="destJarFile" value="${lib.dir}/junit-3.8.1.jar"/>
+        </antcall>
+    </target>
+	
+	<!--
+        ant
+    -->
+    
+    <target name="ant-jar-check" description="Checks if Ant JAR exists.">
+    	<condition property="ant.jar.exists">
+    	    <and>
+    	        <available file="${lib.dir}/ant-1.7.1.jar"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="ant-jar" depends="ant-jar-check" unless="ant.jar.exists"
+            description="Copies the Ant JAR to the lib directory.">
+        <echo message="Obtaining lib/ant-1.7.1.jar"/>
+        <antcall target="ant-download-jar"/>
+    </target>
+    
+    <target name="ant-download-jar" depends="ant-jar-check" unless="ant.jar.exists"
+            description="Downloads the ant jar.">
+        <antcall target="download-jar">
+            <param name="srcUrl" value="http://search.maven.org/remotecontent?filepath=org/apache/ant/ant/1.7.1"/>
+            <param name="srcJarFile" value="ant-1.7.1.jar"/>
+            <param name="destJarFile" value="${lib.dir}/ant-1.7.1.jar"/>
+        </antcall>
+    </target>
+	
+	<!--
+        ant launcher
+    --> 	
+	
+	 <target name="ant-launcher-jar-check" description="Checks if Ant launcher JAR exists.">
+    	<condition property="ant.launcher.jar.exists">
+    	    <and>
+    	        <available file="${lib.dir}/ant-launcher-1.7.1.jar"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="ant-launcher-jar" depends="ant-launcher-jar-check" unless="ant.launcher.jar.exists"
+            description="Copies the Ant launcher JAR to the lib directory.">
+        <echo message="Obtaining lib/ant-launcher-1.7.1.jar"/>
+        <antcall target="ant-launcher-download-jar"/>
+    </target>
+    
+    <target name="ant-launcher-download-jar" depends="ant-launcher-jar-check" unless="ant.launcher.jar.exists"
+            description="Downloads the ant launcher jar.">
+        <antcall target="download-jar">
+            <param name="srcUrl" value="http://search.maven.org/remotecontent?filepath=org/apache/ant/ant-launcher/1.7.1"/>
+            <param name="srcJarFile" value="ant-launcher-1.7.1.jar"/>
+            <param name="destJarFile" value="${lib.dir}/ant-launcher-1.7.1.jar"/>
+        </antcall>
+    </target>
+    
+	<!--
+		ant testutil
+    -->
+	
+	<target name="ant-testutil-jar-check" description="Checks if Ant testutil JAR exists.">
+    	<condition property="ant.testutil.jar.exists">
+    	    <and>
+    	        <available file="${lib.dir}/ant-testutil-1.7.1.jar"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="ant-testutil-jar" depends="ant-testutil-jar-check" unless="ant.testutil.jar.exists"
+            description="Copies the Ant testutil JAR to the lib directory.">
+        <echo message="Obtaining lib/ant-testutil-1.7.1.jar"/>
+        <antcall target="ant-testutil-download-jar"/>
+    </target>
+    
+    <target name="ant-testutil-download-jar" depends="ant-testutil-jar-check" unless="ant.testutil.jar.exists"
+            description="Downloads the ant testutil jar.">
+        <antcall target="download-jar">
+            <param name="srcUrl" value="http://search.maven.org/remotecontent?filepath=org/apache/ant/ant-testutil/1.7.1"/>
+            <param name="srcJarFile" value="ant-testutil-1.7.1.jar"/>
+            <param name="destJarFile" value="${lib.dir}/ant-testutil-1.7.1.jar"/>
+        </antcall>
+    </target>
+	
+	<!--
+		dom4j
+    -->
+
+	<target name="dom4j-jar-check" description="Checks if dom4j JAR exists.">
+    	<condition property="dom4j.jar.exists">
+    	    <and>
+    	        <available file="${lib.dir}/dom4j-1.6.1.jar"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="dom4j-jar" depends="dom4j-jar-check" unless="dom4j.jar.exists"
+            description="Copies the dom4j JAR to the lib directory.">
+        <echo message="Obtaining lib/dom4j-1.6.1.jar"/>
+        <antcall target="dom4j-download-jar"/>
+    </target>
+    
+    <target name="dom4j-download-jar" depends="dom4j-jar-check" unless="dom4j.jar.exists"
+            description="Downloads the dom4j jar.">
+        <antcall target="download-jar">
+            <param name="srcUrl" value="http://search.maven.org/remotecontent?filepath=dom4j/dom4j/1.6.1"/>
+            <param name="srcJarFile" value="dom4j-1.6.1.jar"/>
+            <param name="destJarFile" value="${lib.dir}/dom4j-1.6.1.jar"/>
+        </antcall>
+    </target>
+
+	<!--
+		jaxen-1.1-beta-6
+    -->
+	
+	<target name="jaxen-jar-check" description="Checks if jaxen JAR exists.">
+    	<condition property="jaxen.jar.exists">
+    	    <and>
+    	        <available file="${lib.dir}/jaxen-1.1-beta-6.jar"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="jaxen-jar" depends="jaxen-jar-check" unless="jaxen.jar.exists"
+            description="Copies the jaxen JAR to the lib directory.">
+        <echo message="Obtaining lib/jaxen-1.1-beta-6.jar"/>
+        <antcall target="jaxen-download-jar"/>
+    </target>
+    
+    <target name="jaxen-download-jar" depends="jaxen-jar-check" unless="jaxen.jar.exists"
+            description="Downloads the jaxen jar.">
+        <antcall target="download-jar">
+            <param name="srcUrl" value="http://search.maven.org/remotecontent?filepath=jaxen/jaxen/1.1-beta-6"/>
+            <param name="srcJarFile" value="jaxen-1.1-beta-6.jar"/>
+            <param name="destJarFile" value="${lib.dir}/jaxen-1.1-beta-6.jar"/>
+        </antcall>
+    </target>
+	
+</project>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/lib/ant-1.7.1.jar
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/lib/ant-1.7.1.jar b/FlexUnit4AntTasks/lib/ant-1.7.1.jar
deleted file mode 100644
index 7047177..0000000
Binary files a/FlexUnit4AntTasks/lib/ant-1.7.1.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/lib/ant-launcher-1.7.1.jar
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/lib/ant-launcher-1.7.1.jar b/FlexUnit4AntTasks/lib/ant-launcher-1.7.1.jar
deleted file mode 100644
index 7c8f849..0000000
Binary files a/FlexUnit4AntTasks/lib/ant-launcher-1.7.1.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/lib/ant-testutil-1.7.1.jar
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/lib/ant-testutil-1.7.1.jar b/FlexUnit4AntTasks/lib/ant-testutil-1.7.1.jar
deleted file mode 100644
index 10f5230..0000000
Binary files a/FlexUnit4AntTasks/lib/ant-testutil-1.7.1.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/lib/dom4j-1.6.1.jar
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/lib/dom4j-1.6.1.jar b/FlexUnit4AntTasks/lib/dom4j-1.6.1.jar
deleted file mode 100644
index c8c4dbb..0000000
Binary files a/FlexUnit4AntTasks/lib/dom4j-1.6.1.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/lib/jaxen-1.1-beta-6.jar
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/lib/jaxen-1.1-beta-6.jar b/FlexUnit4AntTasks/lib/jaxen-1.1-beta-6.jar
deleted file mode 100644
index 6cef35d..0000000
Binary files a/FlexUnit4AntTasks/lib/jaxen-1.1-beta-6.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/d4b628a5/FlexUnit4AntTasks/lib/junit-3.8.1.jar
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/lib/junit-3.8.1.jar b/FlexUnit4AntTasks/lib/junit-3.8.1.jar
deleted file mode 100644
index 674d71e..0000000
Binary files a/FlexUnit4AntTasks/lib/junit-3.8.1.jar and /dev/null differ


[13/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
index 75e580e..3308b35 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import mx.utils.StringUtil;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
index 84cb509..c5aa964 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertUndefinedPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
index f116d2c..624ffce 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/FailAsyncCallPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
    import flexunit.framework.AssertStringFormats;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/GreaterThanPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/GreaterThanPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/GreaterThanPattern.as
index cb0fb63..e98690f 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/GreaterThanPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/GreaterThanPattern.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.flexui.patterns
 {
 	import mx.utils.StringUtil;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/org/flexunit/listeners/UIListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/listeners/UIListener.as b/FlexUnit4UIListener/src/org/flexunit/listeners/UIListener.as
index 13e0b85..2df6caf 100644
--- a/FlexUnit4UIListener/src/org/flexunit/listeners/UIListener.as
+++ b/FlexUnit4UIListener/src/org/flexunit/listeners/UIListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners
 {
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/test/flexunit/flexui/FlexUnitTestRunnerUI.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/test/flexunit/flexui/FlexUnitTestRunnerUI.mxml b/FlexUnit4UIListener/test/flexunit/flexui/FlexUnitTestRunnerUI.mxml
index a1bc0cf..3c31006 100644
--- a/FlexUnit4UIListener/test/flexunit/flexui/FlexUnitTestRunnerUI.mxml
+++ b/FlexUnit4UIListener/test/flexunit/flexui/FlexUnitTestRunnerUI.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" width="500" height="400"  headerHeight="30"  headerColors="0x0000FF" title="FlexUnit Test Run"  verticalAlign="middle" horizontalAlign="center" initialize="{initializeLocalizeString()}" >
 	
 	<mx:Metadata>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/version.properties
----------------------------------------------------------------------
diff --git a/version.properties b/version.properties
index 000e863..374147e 100644
--- a/version.properties
+++ b/version.properties
@@ -1,3 +1,18 @@
+# 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.
+
 build.groupId=org.flexunit
 build.version=4.1.0
 build.number=x


[19/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/core/NotTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/core/NotTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/core/NotTest.as
index 5818285..63b65c6 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/core/NotTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/core/NotTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/date/DateAfterTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateAfterTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateAfterTest.as
index c3a3373..97ac157 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateAfterTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateAfterTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBeforeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBeforeTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBeforeTest.as
index 2257269..5cd7346 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBeforeTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBeforeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBetweenTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBetweenTest.as
index 78e1683..f93afba 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBetweenTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateBetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/date/DateEqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateEqualToTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateEqualToTest.as
index 2db7fdc..4703bbe 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/date/DateEqualToTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/date/DateEqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/number/BetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/number/BetweenTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/number/BetweenTest.as
index 0669e3e..f35b41b 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/number/BetweenTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/number/BetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/number/CloseToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/number/CloseToTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/number/CloseToTest.as
index a2a66fa..9aa81fe 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/number/CloseToTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/number/CloseToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
index 92080c2..8543fd8 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanTest.as
index f4a6ee8..a7b2203 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/number/GreaterThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
index 836b570..eae9e07 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanTest.as
index 070e2f8..16d9e2a 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/number/LessThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/EqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/EqualToTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/EqualToTest.as
index 4fbbeed..cf89462 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/EqualToTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/EqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyChainTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
index 584b04c..3af7618 100644
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyTest.as
index cfdaab8..60c45b4 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
index d11eb7e..a9864c0 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/InstanceOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/InstanceOfTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/InstanceOfTest.as
index ab028f4..776857a 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/InstanceOfTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/InstanceOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/IsFalseTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/IsFalseTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/IsFalseTest.as
index 12e1429..b34660b 100644
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/IsFalseTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/IsFalseTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
   import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/IsTrueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/IsTrueTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/IsTrueTest.as
index 94efb3e..07e757a 100644
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/IsTrueTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/IsTrueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
   import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/NotNullTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/NotNullTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/NotNullTest.as
index 6e7c7ba..cb81aff 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/NotNullTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/NotNullTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/NullTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/NullTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/NullTest.as
index 6425a41..e769edc 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/NullTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/NullTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/object/SameInstanceTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/object/SameInstanceTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/object/SameInstanceTest.as
index b618df9..05ba61c 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/object/SameInstanceTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/object/SameInstanceTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/text/ContainsStringTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/text/ContainsStringTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/text/ContainsStringTest.as
index 53f7663..b0f9d26 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/text/ContainsStringTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/text/ContainsStringTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/text/EmptyStringTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/text/EmptyStringTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/text/EmptyStringTest.as
index d6a5d73..12c671c 100644
--- a/FlexUnit4Test/src/org/hamcrest/mxml/text/EmptyStringTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/text/EmptyStringTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/text/EndsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/text/EndsWithTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/text/EndsWithTest.as
index 35fc550..0a35a3b 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/text/EndsWithTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/text/EndsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/mxml/text/StartsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/mxml/text/StartsWithTest.as b/FlexUnit4Test/src/org/hamcrest/mxml/text/StartsWithTest.as
index 1fa13f2..b99263f 100755
--- a/FlexUnit4Test/src/org/hamcrest/mxml/text/StartsWithTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/mxml/text/StartsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/number/BetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/number/BetweenTest.as b/FlexUnit4Test/src/org/hamcrest/number/BetweenTest.as
index 4a2e2ee..903d28a 100755
--- a/FlexUnit4Test/src/org/hamcrest/number/BetweenTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/number/BetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/number/CloseToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/number/CloseToTest.as b/FlexUnit4Test/src/org/hamcrest/number/CloseToTest.as
index 2de8080..e3aded2 100755
--- a/FlexUnit4Test/src/org/hamcrest/number/CloseToTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/number/CloseToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
     import org.flexunit.assertThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/number/GreaterThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/number/GreaterThanTest.as b/FlexUnit4Test/src/org/hamcrest/number/GreaterThanTest.as
index d342d77..bd1b87e 100755
--- a/FlexUnit4Test/src/org/hamcrest/number/GreaterThanTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/number/GreaterThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/number/IsNotANumberTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/number/IsNotANumberTest.as b/FlexUnit4Test/src/org/hamcrest/number/IsNotANumberTest.as
index eb65703..0d36974 100644
--- a/FlexUnit4Test/src/org/hamcrest/number/IsNotANumberTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/number/IsNotANumberTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 	import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/number/IsNumberTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/number/IsNumberTest.as b/FlexUnit4Test/src/org/hamcrest/number/IsNumberTest.as
index 7bac17c..872309c 100644
--- a/FlexUnit4Test/src/org/hamcrest/number/IsNumberTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/number/IsNumberTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 	import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/number/LessThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/number/LessThanTest.as b/FlexUnit4Test/src/org/hamcrest/number/LessThanTest.as
index d18be05..8f2f94b 100755
--- a/FlexUnit4Test/src/org/hamcrest/number/LessThanTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/number/LessThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/HasPropertiesTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/HasPropertiesTest.as b/FlexUnit4Test/src/org/hamcrest/object/HasPropertiesTest.as
index 670e61b..c81da1c 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/HasPropertiesTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/HasPropertiesTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/HasPropertyChainTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/HasPropertyChainTest.as b/FlexUnit4Test/src/org/hamcrest/object/HasPropertyChainTest.as
index 14a3561..c4ed3e2 100644
--- a/FlexUnit4Test/src/org/hamcrest/object/HasPropertyChainTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/HasPropertyChainTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/HasPropertyTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/HasPropertyTest.as b/FlexUnit4Test/src/org/hamcrest/object/HasPropertyTest.as
index d134243..6d7f731 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/HasPropertyTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/HasPropertyTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/HasPropertyWithValueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/HasPropertyWithValueTest.as b/FlexUnit4Test/src/org/hamcrest/object/HasPropertyWithValueTest.as
index b8936d0..607cbf1 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/HasPropertyWithValueTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/HasPropertyWithValueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/IsEqualTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/IsEqualTest.as b/FlexUnit4Test/src/org/hamcrest/object/IsEqualTest.as
index a5a5e99..1cf4cc3 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/IsEqualTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/IsEqualTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/IsFalseTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/IsFalseTest.as b/FlexUnit4Test/src/org/hamcrest/object/IsFalseTest.as
index 674a582..d54a2c3 100644
--- a/FlexUnit4Test/src/org/hamcrest/object/IsFalseTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/IsFalseTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
   import org.hamcrest.MatcherAssertTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/IsInstanceOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/IsInstanceOfTest.as b/FlexUnit4Test/src/org/hamcrest/object/IsInstanceOfTest.as
index 7b5406c..400c0fe 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/IsInstanceOfTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/IsInstanceOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/IsNullTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/IsNullTest.as b/FlexUnit4Test/src/org/hamcrest/object/IsNullTest.as
index 53fc5ab..ea4eb20 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/IsNullTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/IsNullTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/IsSameTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/IsSameTest.as b/FlexUnit4Test/src/org/hamcrest/object/IsSameTest.as
index 4e00ff5..baa60a7 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/IsSameTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/IsSameTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/IsStrictlyEqualTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/IsStrictlyEqualTest.as b/FlexUnit4Test/src/org/hamcrest/object/IsStrictlyEqualTest.as
index bef50f9..3683ff2 100755
--- a/FlexUnit4Test/src/org/hamcrest/object/IsStrictlyEqualTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/IsStrictlyEqualTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/object/IsTrueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/object/IsTrueTest.as b/FlexUnit4Test/src/org/hamcrest/object/IsTrueTest.as
index 89cc45f..b8f3fb3 100644
--- a/FlexUnit4Test/src/org/hamcrest/object/IsTrueTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/object/IsTrueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
   import org.hamcrest.MatcherAssertTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/text/EmptyStringTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/text/EmptyStringTest.as b/FlexUnit4Test/src/org/hamcrest/text/EmptyStringTest.as
index 3964212..3ba1307 100755
--- a/FlexUnit4Test/src/org/hamcrest/text/EmptyStringTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/text/EmptyStringTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/text/StringContainsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/text/StringContainsTest.as b/FlexUnit4Test/src/org/hamcrest/text/StringContainsTest.as
index 66896e6..427a167 100755
--- a/FlexUnit4Test/src/org/hamcrest/text/StringContainsTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/text/StringContainsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/text/StringEndsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/text/StringEndsWithTest.as b/FlexUnit4Test/src/org/hamcrest/text/StringEndsWithTest.as
index 6383a78..2576602 100755
--- a/FlexUnit4Test/src/org/hamcrest/text/StringEndsWithTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/text/StringEndsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/text/StringStartsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/text/StringStartsWithTest.as b/FlexUnit4Test/src/org/hamcrest/text/StringStartsWithTest.as
index b27d966..148c261 100755
--- a/FlexUnit4Test/src/org/hamcrest/text/StringStartsWithTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/text/StringStartsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/hamcrest/validation/MatcherValidatorTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/hamcrest/validation/MatcherValidatorTest.as b/FlexUnit4Test/src/org/hamcrest/validation/MatcherValidatorTest.as
index e12c6b6..d781517 100755
--- a/FlexUnit4Test/src/org/hamcrest/validation/MatcherValidatorTest.as
+++ b/FlexUnit4Test/src/org/hamcrest/validation/MatcherValidatorTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.validation
 {
     import mx.events.ValidationResultEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/suite/cases/FlunitTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/suite/cases/FlunitTest.as b/FlexUnit4Test/src/suite/cases/FlunitTest.as
index 042c5c4..094481a 100644
--- a/FlexUnit4Test/src/suite/cases/FlunitTest.as
+++ b/FlexUnit4Test/src/suite/cases/FlunitTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 suite.cases {
 import net.digitalprimates.fluint.tests.TestCase;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/suite/cases/NestedAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/suite/cases/NestedAsync.as b/FlexUnit4Test/src/suite/cases/NestedAsync.as
index 25fb3cb..56adbc2 100644
--- a/FlexUnit4Test/src/suite/cases/NestedAsync.as
+++ b/FlexUnit4Test/src/suite/cases/NestedAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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 suite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/ReflectionSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/ReflectionSuite.as b/FlexUnit4Test/src/tests/flex/lang/reflect/ReflectionSuite.as
index 4942941..6f630ad 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/ReflectionSuite.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/ReflectionSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect {
 	import tests.flex.lang.reflect.builders.BuilderSuite;
 	import tests.flex.lang.reflect.constructor.ConstructorSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/builders/BuilderSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/builders/BuilderSuite.as b/FlexUnit4Test/src/tests/flex/lang/reflect/builders/BuilderSuite.as
index 59afed1..acdab86 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/builders/BuilderSuite.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/builders/BuilderSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.builders {
 	[Suite]
 	[RunWith("org.flexunit.runners.Suite")]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/builders/MethodBuilderWithValidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/builders/MethodBuilderWithValidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/builders/MethodBuilderWithValidData.as
index 10815ce..63813d0 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/builders/MethodBuilderWithValidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/builders/MethodBuilderWithValidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.builders {
 	import flash.utils.describeType;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithResolvedData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithResolvedData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithResolvedData.as
index c9f81b1..46f1799 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithResolvedData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithResolvedData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor {
 	import flex.lang.reflect.Constructor;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithUnresolvedData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithUnresolvedData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithUnresolvedData.as
index f0a9783..1e431bf 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithUnresolvedData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorParamsWithUnresolvedData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor {
 	import flex.lang.reflect.Constructor;
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorSuite.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorSuite.as
index 4161cfe..ab28fba 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorSuite.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor {
 
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorWithStubKlass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorWithStubKlass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorWithStubKlass.as
index eb12106..c7e4717 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorWithStubKlass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/ConstructorWithStubKlass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor {
 	import flex.lang.reflect.Constructor;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor0ArgTestClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor0ArgTestClass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor0ArgTestClass.as
index 5aa6575..4318e5f 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor0ArgTestClass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor0ArgTestClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor.helper
 {
 	public class Constructor0ArgTestClass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor1ArgTestClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor1ArgTestClass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor1ArgTestClass.as
index 36dae95..700be5e 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor1ArgTestClass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor1ArgTestClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor.helper {
 	public class Constructor1ArgTestClass {
 		public var arg1:int;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor2ArgTestClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor2ArgTestClass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor2ArgTestClass.as
index fb99917..0baaaa6 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor2ArgTestClass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor2ArgTestClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor.helper {
 	public class Constructor2ArgTestClass {
 		public var arg1:int;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor3ArgTestClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor3ArgTestClass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor3ArgTestClass.as
index 4482665..6516284 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor3ArgTestClass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/Constructor3ArgTestClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor.helper {
 	public class Constructor3ArgTestClass {
 		public var arg1:int;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/ConstructorUndefinedArgTestClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/ConstructorUndefinedArgTestClass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/ConstructorUndefinedArgTestClass.as
index 750e645..a1fcdbd 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/ConstructorUndefinedArgTestClass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/ConstructorUndefinedArgTestClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor.helper {
 	/** This class is separate from the others and is only ever instantiated in one class.
 	 *  We need to ensure that is true so we can attempt to resolve the constructor arguments.

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
index 28d52f4..24f2996 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.constructor.helper {
 	import flex.lang.reflect.Klass;
 


[06/41] git commit: removed digital primates copyright header

Posted by cz...@apache.org.
removed digital primates copyright header


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/4a6e50ff
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/4a6e50ff
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/4a6e50ff

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 4a6e50ff80a924191d18a619331ee377e2c931de
Parents: 32d87a5
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat May 18 00:09:24 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat May 18 00:09:24 2013 +0800

----------------------------------------------------------------------
 FlexUnit4/src/flex/lang/reflect/Constructor.as     |   27 -------------
 FlexUnit4/src/flex/lang/reflect/Field.as           |   27 -------------
 FlexUnit4/src/flex/lang/reflect/Klass.as           |   27 -------------
 FlexUnit4/src/flex/lang/reflect/Method.as          |   27 -------------
 .../src/flex/lang/reflect/builders/FieldBuilder.as |   27 -------------
 .../reflect/builders/MetaDataAnnotationBuilder.as  |   27 -------------
 .../flex/lang/reflect/builders/MethodBuilder.as    |   27 -------------
 .../src/flex/lang/reflect/cache/ClassDataCache.as  |   27 -------------
 .../lang/reflect/metadata/MetaDataAnnotation.as    |   27 -------------
 .../flex/lang/reflect/metadata/MetaDataArgument.as |   27 -------------
 .../src/flex/lang/reflect/utils/MetadataTools.as   |   27 -------------
 FlexUnit4/src/org/flexunit/Assert.as               |   27 -------------
 FlexUnit4/src/org/flexunit/AssertionError.as       |   27 -------------
 FlexUnit4/src/org/flexunit/Assume.as               |   27 -------------
 FlexUnit4/src/org/flexunit/IncludeFlexClasses.as   |   27 -------------
 FlexUnit4/src/org/flexunit/assertThat.as           |   27 -------------
 FlexUnit4/src/org/flexunit/asserts/assertEquals.as |   27 -------------
 FlexUnit4/src/org/flexunit/asserts/assertFalse.as  |   27 -------------
 .../src/org/flexunit/asserts/assertNotNull.as      |   27 -------------
 FlexUnit4/src/org/flexunit/asserts/assertNull.as   |   27 -------------
 .../org/flexunit/asserts/assertStrictlyEquals.as   |   27 -------------
 FlexUnit4/src/org/flexunit/asserts/assertTrue.as   |   27 -------------
 FlexUnit4/src/org/flexunit/asserts/fail.as         |   27 -------------
 FlexUnit4/src/org/flexunit/assumeThat.as           |   27 -------------
 FlexUnit4/src/org/flexunit/async/Async.as          |   27 -------------
 FlexUnit4/src/org/flexunit/async/AsyncHandler.as   |   24 -----------
 FlexUnit4/src/org/flexunit/async/AsyncLocator.as   |   27 -------------
 .../org/flexunit/async/AsyncNativeTestResponder.as |   29 +-------------
 .../src/org/flexunit/async/AsyncTestResponder.as   |   27 -------------
 .../src/org/flexunit/async/IAsyncTestResponder.as  |   27 -------------
 FlexUnit4/src/org/flexunit/async/ITestResponder.as |   27 -------------
 FlexUnit4/src/org/flexunit/async/TestResponder.as  |   27 -------------
 .../constants/AnnotationArgumentConstants.as       |   27 -------------
 .../org/flexunit/constants/AnnotationConstants.as  |   27 -------------
 FlexUnit4/src/org/flexunit/events/AsyncEvent.as    |   24 -----------
 .../src/org/flexunit/events/AsyncResponseEvent.as  |   24 -----------
 FlexUnit4/src/org/flexunit/events/UnknownError.as  |   27 -------------
 .../org/flexunit/events/rule/EventExpectations.as  |   27 -------------
 .../runners/statements/AssignmentSequencer.as      |   27 -------------
 .../MethodCompleteWithParamsStatement.as           |   27 -------------
 .../runners/statements/TheoryAnchor.as             |   27 -------------
 .../runners/statements/TheoryBlockRunner.as        |   27 -------------
 .../statements/TheoryBlockRunnerStatement.as       |   27 -------------
 .../experimental/theories/IParameterSupplier.as    |   27 -------------
 .../experimental/theories/IPotentialAssignment.as  |   27 -------------
 .../experimental/theories/ParameterSignature.as    |   27 -------------
 .../experimental/theories/PotentialAssignment.as   |   27 -------------
 .../org/flexunit/experimental/theories/Theories.as |   27 -------------
 .../theories/internals/AllMembersSupplier.as       |   27 -------------
 .../experimental/theories/internals/Assignments.as |   27 -------------
 .../internals/ParameterizedAssertionError.as       |   27 -------------
 .../error/CouldNotGenerateValueException.as        |   27 -------------
 .../internals/AssumptionViolatedException.as       |   27 -------------
 .../src/org/flexunit/internals/TextListener.as     |   27 -------------
 .../src/org/flexunit/internals/TraceListener.as    |   27 -------------
 .../builders/AllDefaultPossibilitiesBuilder.as     |   27 -------------
 .../internals/builders/FlexUnit1Builder.as         |   27 -------------
 .../internals/builders/FlexUnit4Builder.as         |   27 -------------
 .../builders/FlexUnit4QualifiedBuilder.as          |   27 -------------
 .../flexunit/internals/builders/IgnoredBuilder.as  |   27 -------------
 .../internals/builders/IgnoredClassRunner.as       |   27 -------------
 .../flexunit/internals/builders/MetaDataBuilder.as |   27 -------------
 .../org/flexunit/internals/builders/NullBuilder.as |   27 -------------
 .../builders/OnlyRecognizedTestClassBuilder.as     |   27 -------------
 .../internals/builders/SuiteMethodBuilder.as       |   27 -------------
 .../dependency/ExternalDependencyResolver.as       |   27 -------------
 .../dependency/ExternalRunnerDependencyWatcher.as  |   27 -------------
 .../dependency/IExternalDependencyResolver.as      |   27 -------------
 .../dependency/IExternalRunnerDependencyWatcher.as |   27 -------------
 .../internals/events/ExecutionCompleteEvent.as     |   27 -------------
 .../org/flexunit/internals/flexunit_internal.as    |   27 -------------
 .../internals/listeners/FluintDisplayListener.as   |   27 -------------
 .../src/org/flexunit/internals/matchers/Each.as    |   27 -------------
 .../flexunit/internals/namespaces/classInternal.as |   27 -------------
 .../flexunit/internals/requests/ClassRequest.as    |   27 -------------
 .../flexunit/internals/requests/FilterRequest.as   |   27 -------------
 .../internals/requests/QualifyingRequest.as        |   27 -------------
 .../flexunit/internals/requests/SortingRequest.as  |   27 -------------
 .../internals/runners/ChildRunnerSequencer.as      |   27 -------------
 .../internals/runners/ErrorReportingRunner.as      |   27 -------------
 .../internals/runners/FlexUnit1ClassRunner.as      |   27 -------------
 .../internals/runners/InitializationError.as       |   27 -------------
 .../org/flexunit/internals/runners/SuiteMethod.as  |   27 -------------
 .../internals/runners/model/EachTestNotifier.as    |   27 -------------
 .../internals/runners/model/IReflectiveCallable.as |   27 -------------
 .../runners/model/MultipleFailureException.as      |   27 -------------
 .../runners/statements/AsyncStatementBase.as       |   27 -------------
 .../internals/runners/statements/ExpectAsync.as    |   27 -------------
 .../runners/statements/ExpectException.as          |   27 -------------
 .../flexunit/internals/runners/statements/Fail.as  |   27 -------------
 .../internals/runners/statements/FailOnTimeout.as  |   27 -------------
 .../runners/statements/IAsyncHandlingStatement.as  |   27 -------------
 .../runners/statements/IAsyncStatement.as          |   27 -------------
 .../internals/runners/statements/InvokeMethod.as   |   27 -------------
 .../internals/runners/statements/MethodRuleBase.as |   27 -------------
 .../internals/runners/statements/RunAfters.as      |   27 -------------
 .../internals/runners/statements/RunAftersClass.as |   27 -------------
 .../runners/statements/RunAftersInline.as          |   27 -------------
 .../internals/runners/statements/RunBefores.as     |   27 -------------
 .../runners/statements/RunBeforesClass.as          |   27 -------------
 .../runners/statements/RunBeforesInline.as         |   27 -------------
 .../runners/statements/SequencerWithDecoration.as  |   27 -------------
 .../runners/statements/StackAndFrameManagement.as  |   27 -------------
 .../runners/statements/StatementSequencer.as       |   27 -------------
 .../internals/runners/watcher/FrameWatcher.as      |   27 -------------
 .../src/org/flexunit/reporting/FailureFormatter.as |   27 -------------
 FlexUnit4/src/org/flexunit/runner/Description.as   |   27 -------------
 FlexUnit4/src/org/flexunit/runner/Descriptor.as    |   27 -------------
 FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as  |   27 -------------
 FlexUnit4/src/org/flexunit/runner/IDescribable.as  |   27 -------------
 FlexUnit4/src/org/flexunit/runner/IDescription.as  |   27 -------------
 FlexUnit4/src/org/flexunit/runner/IRequest.as      |   27 -------------
 FlexUnit4/src/org/flexunit/runner/IRunner.as       |   27 -------------
 FlexUnit4/src/org/flexunit/runner/Request.as       |   27 -------------
 FlexUnit4/src/org/flexunit/runner/Result.as        |   27 -------------
 .../runner/external/ExternalDependencyToken.as     |   27 -------------
 .../runner/external/IExternalDependencyData.as     |   27 -------------
 .../runner/external/IExternalDependencyLoader.as   |   27 -------------
 .../runner/external/IExternalDependencyRunner.as   |   27 -------------
 .../flexunit/runner/manipulation/IFilterable.as    |   27 -------------
 .../flexunit/runner/manipulation/IFixtureSorter.as |   27 -------------
 .../flexunit/runner/manipulation/ISimpleCursor.as  |   27 -------------
 .../src/org/flexunit/runner/manipulation/ISort.as  |   27 -------------
 .../org/flexunit/runner/manipulation/ISortable.as  |   27 -------------
 .../org/flexunit/runner/manipulation/ISorter.as    |   27 -------------
 .../runner/manipulation/NoTestsRemainException.as  |   27 -------------
 .../manipulation/OrderArgumentPlusAlphaSorter.as   |   27 -------------
 .../OrderArgumentPlusInheritanceSorter.as          |   27 -------------
 .../runner/manipulation/OrderArgumentSorter.as     |   27 -------------
 .../src/org/flexunit/runner/manipulation/Sorter.as |   27 -------------
 .../manipulation/fields/FieldMetaDataSorter.as     |   27 -------------
 .../runner/manipulation/filters/DynamicFilter.as   |   27 -------------
 .../ClassInheritanceOrderCache.as                  |   27 -------------
 .../sortingInheritance/ISortingInheritanceCache.as |   27 -------------
 .../org/flexunit/runner/notification/Failure.as    |   27 -------------
 .../notification/IAsyncCompletionRunListener.as    |   27 -------------
 .../runner/notification/IAsyncRunListener.as       |   27 -------------
 .../notification/IAsyncStartupRunListener.as       |   27 -------------
 .../flexunit/runner/notification/IRunListener.as   |   27 -------------
 .../flexunit/runner/notification/IRunNotifier.as   |   27 -------------
 .../flexunit/runner/notification/RunListener.as    |   27 -------------
 .../flexunit/runner/notification/RunNotifier.as    |   27 -------------
 .../runner/notification/StoppedByUserException.as  |   27 -------------
 .../notification/async/AsyncListenerWatcher.as     |   27 -------------
 .../runner/notification/async/WaitingListener.as   |   28 -------------
 .../runner/notification/async/XMLListener.as       |   28 -------------
 .../flexunit/runners/BlockFlexUnit4ClassRunner.as  |   27 -------------
 .../src/org/flexunit/runners/Parameterized.as      |   31 ---------------
 FlexUnit4/src/org/flexunit/runners/ParentRunner.as |   27 -------------
 FlexUnit4/src/org/flexunit/runners/Suite.as        |   27 -------------
 .../org/flexunit/runners/model/FrameworkMethod.as  |   27 -------------
 .../org/flexunit/runners/model/IRunnerBuilder.as   |   27 -------------
 .../src/org/flexunit/runners/model/IStatement.as   |   27 -------------
 .../flexunit/runners/model/RunnerBuilderBase.as    |   27 -------------
 .../src/org/flexunit/runners/model/TestClass.as    |   27 -------------
 .../org/flexunit/token/AsyncCoreStartupToken.as    |   27 -------------
 FlexUnit4/src/org/flexunit/token/AsyncTestToken.as |   27 -------------
 FlexUnit4/src/org/flexunit/token/ChildResult.as    |   27 -------------
 .../src/org/flexunit/token/IAsyncTestToken.as      |   27 -------------
 FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as  |   27 -------------
 .../src/org/flexunit/utils/DescriptionUtil.as      |   28 -------------
 .../src/org/fluint/sequence/ISequenceAction.as     |   24 -----------
 FlexUnit4/src/org/fluint/sequence/ISequencePend.as |   24 -----------
 FlexUnit4/src/org/fluint/sequence/ISequenceStep.as |   24 -----------
 .../org/fluint/sequence/SequenceBindingWaiter.as   |   24 -----------
 .../src/org/fluint/sequence/SequenceCaller.as      |   24 -----------
 FlexUnit4/src/org/fluint/sequence/SequenceDelay.as |   30 --------------
 .../org/fluint/sequence/SequenceEventDispatcher.as |   24 -----------
 .../src/org/fluint/sequence/SequenceRunner.as      |   24 -----------
 .../src/org/fluint/sequence/SequenceSetter.as      |   24 -----------
 .../src/org/fluint/sequence/SequenceWaiter.as      |   24 -----------
 .../uiImpersonation/IVisualEnvironmentBuilder.as   |   28 -------------
 .../uiImpersonation/IVisualTestEnvironment.as      |   27 -------------
 .../org/fluint/uiImpersonation/UIImpersonator.as   |   27 -------------
 .../uiImpersonation/VisualTestEnvironment.as       |   27 -------------
 .../VisualTestEnvironmentBuilder.as                |   24 -----------
 .../actionScript/ActionScriptEnvironmentBuilder.as |   28 -------------
 .../ActionScriptVisualTestEnvironment.as           |   28 -------------
 .../uiImpersonation/flex/FlexEnvironmentBuilder.as |   28 -------------
 .../flex/FlexMXVisualTestEnvironment.as            |   28 -------------
 .../flex/FlexSparkVisualTestEnvironment.as         |   28 -------------
 .../src/org/flexunit/listeners/CIListener.as       |   28 -------------
 .../flexunit/internals/builders/Fluint1Builder.as  |   27 -------------
 .../internals/runners/Fluint1ClassRunner.as        |   27 -------------
 .../suites/frameworkSuite/FlexUnit4Suite.as        |   24 -----------
 .../frameworkSuite/cases/TestASComponentUse.as     |   24 -----------
 .../suites/frameworkSuite/cases/TestAssert.as      |   24 -----------
 .../frameworkSuite/cases/TestAsynchronousAS.as     |   24 -----------
 .../cases/TestAsynchronousSetUpTearDown.as         |   24 -----------
 .../cases/TestBeforeAfterClassOrder.as             |   24 -----------
 .../cases/TestBeforeAfterClassOrderAsync.as        |   24 -----------
 .../frameworkSuite/cases/TestBeforeAfterOrder.as   |   24 -----------
 .../cases/TestBeforeAfterOrderAsync.as             |   24 -----------
 .../suites/frameworkSuite/cases/TestBindingUse.as  |   24 -----------
 .../suites/frameworkSuite/cases/TestIgnore.as      |   24 -----------
 .../frameworkSuite/cases/TestMXMLComponentUse.as   |   24 -----------
 .../suites/frameworkSuite/cases/TestMethodOrder.as |   24 -----------
 .../cases/TestSynchronousSetUpTearDown.as          |   24 -----------
 FlexUnit4Test/src/org/flexunit/cases/AssertCase.as |   24 -----------
 .../lang/reflect/constructor/helper/StubKlass.as   |   27 -------------
 .../suites/frameworkSuite/FlexUnit4Suite.as        |   24 -----------
 .../frameworkSuite/cases/TestASComponentUse.as     |   24 -----------
 .../suites/frameworkSuite/cases/TestAssert.as      |   24 -----------
 .../frameworkSuite/cases/TestAsynchronous.as       |   24 -----------
 .../cases/TestAsynchronousSetUpTearDown.as         |   24 -----------
 .../cases/TestBeforeAfterClassOrder.as             |   24 -----------
 .../cases/TestBeforeAfterClassOrderAsync.as        |   24 -----------
 .../frameworkSuite/cases/TestBeforeAfterOrder.as   |   24 -----------
 .../cases/TestBeforeAfterOrderAsync.as             |   24 -----------
 .../suites/frameworkSuite/cases/TestBindingUse.as  |   24 -----------
 .../suites/frameworkSuite/cases/TestIgnore.as      |   24 -----------
 .../frameworkSuite/cases/TestMXMLComponentUse.as   |   24 -----------
 .../suites/frameworkSuite/cases/TestMethodOrder.as |   24 -----------
 .../cases/TestSynchronousSetUpTearDown.as          |   24 -----------
 .../src/flexUnitTests/hamcrest/HamcrestSuite.as    |   26 ------------
 .../flexunit/flexui/patterns/AssertThatPattern.as  |   27 -------------
 216 files changed, 1 insertions(+), 5723 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/Constructor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Constructor.as b/FlexUnit4/src/flex/lang/reflect/Constructor.as
index 99a1479..1d46ffa 100644
--- a/FlexUnit4/src/flex/lang/reflect/Constructor.as
+++ b/FlexUnit4/src/flex/lang/reflect/Constructor.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect {
 	import flash.utils.describeType;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/Field.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Field.as b/FlexUnit4/src/flex/lang/reflect/Field.as
index 1ac661d..cf4525d 100644
--- a/FlexUnit4/src/flex/lang/reflect/Field.as
+++ b/FlexUnit4/src/flex/lang/reflect/Field.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/Klass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Klass.as b/FlexUnit4/src/flex/lang/reflect/Klass.as
index fd8171d..e76e2a2 100644
--- a/FlexUnit4/src/flex/lang/reflect/Klass.as
+++ b/FlexUnit4/src/flex/lang/reflect/Klass.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect {
 	import flash.utils.Dictionary;
 	import flash.utils.describeType;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/Method.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Method.as b/FlexUnit4/src/flex/lang/reflect/Method.as
index a7e113b..7f2a82f 100644
--- a/FlexUnit4/src/flex/lang/reflect/Method.as
+++ b/FlexUnit4/src/flex/lang/reflect/Method.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.metadata.MetaDataArgument;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as b/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
index 8a3bc49..dd6599d 100644
--- a/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
+++ b/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect.builders {
 	import flex.lang.reflect.Field;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as b/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
index 61a1130..0b49279 100644
--- a/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
+++ b/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect.builders {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.utils.MetadataTools;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as b/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
index a09eaab..6418e02 100644
--- a/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
+++ b/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect.builders {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as b/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
index 7fb8737..a16111b 100644
--- a/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
+++ b/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect.cache {
 	import flash.utils.Dictionary;
 	import flash.utils.describeType;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
index dab2ac2..3deef56 100644
--- a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
+++ b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect.metadata {
 
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
index 0d0d901..a2f4761 100644
--- a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
+++ b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect.metadata {
 
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as b/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
index dd3b767..1c036a7 100644
--- a/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
+++ b/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package flex.lang.reflect.utils
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/Assert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/Assert.as b/FlexUnit4/src/org/flexunit/Assert.as
index 348c2ae..9e336e8 100644
--- a/FlexUnit4/src/org/flexunit/Assert.as
+++ b/FlexUnit4/src/org/flexunit/Assert.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/AssertionError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/AssertionError.as b/FlexUnit4/src/org/flexunit/AssertionError.as
index 2f0a394..7bd44ed 100644
--- a/FlexUnit4/src/org/flexunit/AssertionError.as
+++ b/FlexUnit4/src/org/flexunit/AssertionError.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/Assume.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/Assume.as b/FlexUnit4/src/org/flexunit/Assume.as
index 04f7cb3..65dea1e 100644
--- a/FlexUnit4/src/org/flexunit/Assume.as
+++ b/FlexUnit4/src/org/flexunit/Assume.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit
 {
 	import org.flexunit.internals.AssumptionViolatedException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as b/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
index fb08dfc..9254814 100644
--- a/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
+++ b/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit
 {
 	import org.flexunit.async.AsyncTestResponder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/assertThat.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/assertThat.as b/FlexUnit4/src/org/flexunit/assertThat.as
index 90ab11f..23167c2 100644
--- a/FlexUnit4/src/org/flexunit/assertThat.as
+++ b/FlexUnit4/src/org/flexunit/assertThat.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit
 {
 	import org.hamcrest.assertThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertEquals.as b/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
index ad546e0..4a1346a 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertFalse.as b/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
index bc29fdb..4a2f6ed 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as b/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
index 4c90fe0..e047c41 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/asserts/assertNull.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertNull.as b/FlexUnit4/src/org/flexunit/asserts/assertNull.as
index 39ff961..ea53c6b 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertNull.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertNull.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as b/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
index c8bbf98..5b26961 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.asserts
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertTrue.as b/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
index 0dd8f91..d78abc8 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/asserts/fail.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/fail.as b/FlexUnit4/src/org/flexunit/asserts/fail.as
index cf3e11a..c38949d 100644
--- a/FlexUnit4/src/org/flexunit/asserts/fail.as
+++ b/FlexUnit4/src/org/flexunit/asserts/fail.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/assumeThat.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/assumeThat.as b/FlexUnit4/src/org/flexunit/assumeThat.as
index 0cb927f..8f3cba8 100644
--- a/FlexUnit4/src/org/flexunit/assumeThat.as
+++ b/FlexUnit4/src/org/flexunit/assumeThat.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit
 {
 	import org.hamcrest.Matcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/Async.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/Async.as b/FlexUnit4/src/org/flexunit/async/Async.as
index c382341..f58995f 100644
--- a/FlexUnit4/src/org/flexunit/async/Async.as
+++ b/FlexUnit4/src/org/flexunit/async/Async.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.async
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncHandler.as b/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
index c396965..601e24d 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.flexunit.async {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncLocator.as b/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
index 695f35e..64568fa 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.async {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as b/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
index c02595a..c1cc609 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
@@ -1,31 +1,4 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Nicolas Lunet 
- * @version    
- **/ 
-package org.flexunit.async {
+/package org.flexunit.async {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as b/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
index 5bd2960..1b2c689 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.async {
 	import flash.events.EventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as b/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
index cad0880..397d2d2 100644
--- a/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.async
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/ITestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/ITestResponder.as b/FlexUnit4/src/org/flexunit/async/ITestResponder.as
index af2731b..98b5502 100644
--- a/FlexUnit4/src/org/flexunit/async/ITestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/ITestResponder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.async {
 	/**
 	 * An <code>ITestResponder</code> is an interface for to be implemented by classes that want to handle the results

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/async/TestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/TestResponder.as b/FlexUnit4/src/org/flexunit/async/TestResponder.as
index d8c8954..efe6edc 100644
--- a/FlexUnit4/src/org/flexunit/async/TestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/TestResponder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.async {
 	/**
 	 * A respoder for tests that contains <code>Function</code>s for the test succeeding or the test 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as b/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
index bce02df..a3ce6a0 100644
--- a/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
+++ b/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.constants {
 	public class AnnotationArgumentConstants {
 		/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as b/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
index f3edfcd..538b211 100644
--- a/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
+++ b/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.constants {
 	public class AnnotationConstants {
 		/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/AsyncEvent.as b/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
index 720990e..2ef0cbf 100644
--- a/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
+++ b/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.flexunit.events {
 	import flash.events.Event;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as b/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
index 7f182fe..8e4b3ba 100644
--- a/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
+++ b/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/
 package org.flexunit.events {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/events/UnknownError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/UnknownError.as b/FlexUnit4/src/org/flexunit/events/UnknownError.as
index 9488d4c..2aca2c4 100644
--- a/FlexUnit4/src/org/flexunit/events/UnknownError.as
+++ b/FlexUnit4/src/org/flexunit/events/UnknownError.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.events
 {
 	import flash.events.ErrorEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as b/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
index f162d41..d982550 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2011 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.events.rule {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
index 6ddb323..c82cc88 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.runners.statements {
 	import org.flexunit.experimental.theories.IPotentialAssignment;
 	import org.flexunit.experimental.theories.internals.Assignments;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
index f403cd1..7db33ab 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.runners.statements {
 	import org.flexunit.experimental.theories.internals.Assignments;
 	import org.flexunit.experimental.theories.internals.error.CouldNotGenerateValueException;


[18/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAProperty.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAProperty.as b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAProperty.as
index 3fccac8..c365c04 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAProperty.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAProperty.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.field {
 	import flex.lang.reflect.Field;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAVariable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAVariable.as b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAVariable.as
index af4805e..f143ce1 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAVariable.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldAsAVariable.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.field {
 	import flash.utils.describeType;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldSuite.as b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldSuite.as
index ab98350..9f68e33 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldSuite.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.field {
 
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithInvalidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithInvalidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithInvalidData.as
index 40ba95d..9f90eaa 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithInvalidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithInvalidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.field {
 	import flex.lang.reflect.Field;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithValidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithValidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithValidData.as
index 4ba3dfd..b0d1b50 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithValidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/field/FieldWithValidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.field {
 	import flex.lang.reflect.Field;
 	import flex.lang.reflect.metadata.MetaDataAnnotation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassSuite.as b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassSuite.as
index c07fc2a..7b0ecb3 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassSuite.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.klass {
 	
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithInvalidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithInvalidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithInvalidData.as
index ad35560..b9e1901 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithInvalidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithInvalidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.klass {
 	import flash.events.EventDispatcher;
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithValidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithValidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithValidData.as
index 5151cd1..2dfb52d 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithValidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/KlassWithValidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.klass {
 	import flash.events.EventDispatcher;
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor1.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor1.as b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor1.as
index 1dfe4d2..f4536d1 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor1.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor1.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.klass.helper
 {
 	public class Ancestor1

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor2.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor2.as b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor2.as
index 3355bfd..4f5006f 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor2.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/Ancestor2.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.klass.helper
 {
 	public class Ancestor2 extends Ancestor1

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/ClassForIntrospection.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/ClassForIntrospection.as b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/ClassForIntrospection.as
index 2043ce1..c55e9e2 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/ClassForIntrospection.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/ClassForIntrospection.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.klass.helper {
 	[Ignore]
 	public class ClassForIntrospection extends Ancestor2 implements IFakeInterface {

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/IFakeInterface.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/IFakeInterface.as b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/IFakeInterface.as
index 0551649..c5bd26a 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/IFakeInterface.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/klass/helper/IFakeInterface.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.klass.helper
 {
 	public interface IFakeInterface

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/MetaDataSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/MetaDataSuite.as b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/MetaDataSuite.as
index 9d5e579..2b14da6 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/MetaDataSuite.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/MetaDataSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.metadata {
 	import tests.flex.lang.reflect.metadata.metaDataAnnotation.AnnotationWithInvalidData;
 	import tests.flex.lang.reflect.metadata.metaDataAnnotation.AnnotationWithValidData;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithInvalidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithInvalidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithInvalidData.as
index a594c41..52b610a 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithInvalidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithInvalidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.metadata.metaDataAnnotation {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithValidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithValidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithValidData.as
index 4531f6a..eb6d4fd 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithValidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataAnnotation/AnnotationWithValidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.metadata.metaDataAnnotation {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithInvalidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithInvalidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithInvalidData.as
index 7ad87fa..9366981 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithInvalidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithInvalidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.metadata.metaDataArgument {
 	import flex.lang.reflect.metadata.MetaDataArgument;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithValidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithValidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithValidData.as
index 7c0739a..644933a 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithValidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/metaDataArgument/ArgumentWithValidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.metadata.metaDataArgument {
 	import flex.lang.reflect.metadata.MetaDataArgument;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/utils/MetaDataToolsCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/utils/MetaDataToolsCase.as b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/utils/MetaDataToolsCase.as
index c844224..89267d6 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/utils/MetaDataToolsCase.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/metadata/utils/MetaDataToolsCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.metadata.utils
 {
 	import flex.lang.reflect.utils.MetadataTools;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodSuite.as b/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodSuite.as
index 3f7fdbf..c9c6d5d 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodSuite.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.method {
 
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithInvalidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithInvalidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithInvalidData.as
index 9d83cde..5063eee 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithInvalidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithInvalidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.method {
 	import flex.lang.reflect.Method;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithValidData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithValidData.as b/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithValidData.as
index 98a7711..1ff2491 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithValidData.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/method/MethodWithValidData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.flex.lang.reflect.method {
 	import flash.utils.describeType;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/AssertionAndAssumptionSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/AssertionAndAssumptionSuite.as b/FlexUnit4Test/src/tests/org/flexunit/assert/AssertionAndAssumptionSuite.as
index 2b6ae71..c2e6e29 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/AssertionAndAssumptionSuite.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/AssertionAndAssumptionSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert
 {
 	import tests.org.flexunit.assert.absolute.FailCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/absolute/FailCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/absolute/FailCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/absolute/FailCase.as
index b866230..345bd76 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/absolute/FailCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/absolute/FailCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.absolute {
 	import flexunit.framework.AssertionFailedError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/assertionsMade/AssertionsMadeCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/assertionsMade/AssertionsMadeCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/assertionsMade/AssertionsMadeCase.as
index d18da09..5868c02 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/assertionsMade/AssertionsMadeCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/assertionsMade/AssertionsMadeCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.assertionsMade {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeCase.as
index 9a0a7b4..fcad045 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.assumption
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeThatCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeThatCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeThatCase.as
index 3ce6251..09adc51 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeThatCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/assumption/AssumeThatCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.assumption {
 	import mockolate.runner.MockolateRule;
 	import mockolate.stub;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailNotTrue.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailNotTrue.as b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailNotTrue.as
index f3bb8f6..51c168f 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailNotTrue.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailNotTrue.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.bool {
 	import flexunit.framework.AssertionFailedError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailTrue.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailTrue.as b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailTrue.as
index 01259cd..6438ffd 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailTrue.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFailTrue.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.bool {
 	import flexunit.framework.AssertionFailedError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseClassCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseClassCase.as
index 4a6935c..fab0dc1 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseClassCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.bool
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseFunctionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseFunctionCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseFunctionCase.as
index bdc71fc..d194c3d 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseFunctionCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertFalseFunctionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.bool
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueClassCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueClassCase.as
index 2d2a536..2d625b3 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueClassCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.bool
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueFunctionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueFunctionCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueFunctionCase.as
index 610af18..8143018 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueFunctionCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/bool/AssertTrueFunctionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.bool
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/DynamicAsserterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/DynamicAsserterCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/DynamicAsserterCase.as
index 0a18fe4..d254df9 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/DynamicAsserterCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/DynamicAsserterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.dynamicApp {
 	import mockolate.runner.MockolateRule;
 	import mockolate.stub;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/helper/AsserterHelper.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/helper/AsserterHelper.as b/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/helper/AsserterHelper.as
index 54f214e..9275022 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/helper/AsserterHelper.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/dynamicApp/helper/AsserterHelper.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.dynamicApp.helper
 {
 	public class AsserterHelper

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsClassCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsClassCase.as
index 5eecb07..dcbd66f 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsClassCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.equals
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsFunctionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsFunctionCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsFunctionCase.as
index 6ac38f6..048f938 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsFunctionCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertEqualsFunctionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.equals
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotEquals.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotEquals.as b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotEquals.as
index 682477f..f690214 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotEquals.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotEquals.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.equals {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotStrictlyEqual.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotStrictlyEqual.as b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotStrictlyEqual.as
index 2d8fc90..9fafe24 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotStrictlyEqual.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertFailNotStrictlyEqual.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.equals {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsClassCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsClassCase.as
index 50c73e9..d74bc53 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsClassCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.equals
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsFunctionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsFunctionCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsFunctionCase.as
index 0a0f0b1..e949a34 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsFunctionCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/equals/AssertStrictlyEqualsFunctionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.equals
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/error/AssertionErrorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/error/AssertionErrorCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/error/AssertionErrorCase.as
index 6833cd6..f902e01 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/error/AssertionErrorCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/error/AssertionErrorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.error
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNotNull.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNotNull.as b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNotNull.as
index 0ca7bd0..d4ddaf0 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNotNull.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNotNull.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.nullHandling {
 	import flexunit.framework.AssertionFailedError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNull.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNull.as b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNull.as
index 70f6d19..6a8d62a 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNull.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertFailNull.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.nullHandling {
 	import flexunit.framework.AssertionFailedError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNotNullCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNotNullCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNotNullCase.as
index d2c9261..07d224e 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNotNullCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNotNullCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.nullHandling
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullClassCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullClassCase.as
index 4b2044b..5c44f91 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullClassCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.nullHandling
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullFunctionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullFunctionCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullFunctionCase.as
index 5561b15..6d6dd7b 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullFunctionCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/nullHandling/AssertNullFunctionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.nullHandling
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/assert/that/AssertThatCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/assert/that/AssertThatCase.as b/FlexUnit4Test/src/tests/org/flexunit/assert/that/AssertThatCase.as
index cb05434..f377f22 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/assert/that/AssertThatCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/assert/that/AssertThatCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.assert.that {
 	import mockolate.runner.MockolateRule;
 	import mockolate.stub;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/async/AsyncHandlerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncHandlerCase.as b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncHandlerCase.as
index 186c7f9..1091bd9 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncHandlerCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncHandlerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.async
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/async/AsyncLocatorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncLocatorCase.as b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncLocatorCase.as
index 4c5bce4..ef4ab9f 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncLocatorCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncLocatorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.async {
 	import mockolate.runner.MockolateRule;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/async/AsyncNativeTestResponderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncNativeTestResponderCase.as b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncNativeTestResponderCase.as
index a16cc39..feee7f4 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncNativeTestResponderCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncNativeTestResponderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.async {
 	import flash.net.Responder;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/async/AsyncSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncSuite.as b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncSuite.as
index 07b3704..5d867ed 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncSuite.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.async {
 	
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/async/AsyncTestResponderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncTestResponderCase.as b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncTestResponderCase.as
index 036e6d4..09945f5 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/async/AsyncTestResponderCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/async/AsyncTestResponderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.async {
 	import mockolate.runner.MockolateRule;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/async/TestResponderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/async/TestResponderCase.as b/FlexUnit4Test/src/tests/org/flexunit/async/TestResponderCase.as
index 7e1a856..a6777cb 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/async/TestResponderCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/async/TestResponderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.async {
 	import mockolate.runner.MockolateRule;
 	import mockolate.stub;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/events/EventsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/events/EventsSuite.as b/FlexUnit4Test/src/tests/org/flexunit/events/EventsSuite.as
index c96cb1b..3c51cae 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/events/EventsSuite.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/events/EventsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.events {
 	import tests.org.flexunit.events.cases.AsyncEventCase;
 	import tests.org.flexunit.events.cases.AsyncResponseEventCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncEventCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncEventCase.as b/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncEventCase.as
index 1bfb6a5..138ad81 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncEventCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncEventCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.events.cases {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncResponseEventCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncResponseEventCase.as b/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncResponseEventCase.as
index a6aa44a..5198f6d 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncResponseEventCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/events/cases/AsyncResponseEventCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.events.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/runner/util/DescriptionUtilTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/runner/util/DescriptionUtilTest.as b/FlexUnit4Test/src/tests/org/flexunit/runner/util/DescriptionUtilTest.as
index 9bcbbec..dc34322 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/runner/util/DescriptionUtilTest.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/runner/util/DescriptionUtilTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.runner.util {
 	import org.flexunit.asserts.assertEquals;
 	import org.flexunit.runner.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/token/AsyncCoreStartupTokenCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/token/AsyncCoreStartupTokenCase.as b/FlexUnit4Test/src/tests/org/flexunit/token/AsyncCoreStartupTokenCase.as
index 7e368d2..4fa754f 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/token/AsyncCoreStartupTokenCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/token/AsyncCoreStartupTokenCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.token {
 	import mockolate.runner.MockolateRule;
 	import mockolate.stub;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/token/AsyncTestTokenCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/token/AsyncTestTokenCase.as b/FlexUnit4Test/src/tests/org/flexunit/token/AsyncTestTokenCase.as
index 80a98d8..819953e 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/token/AsyncTestTokenCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/token/AsyncTestTokenCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.token {
 	import mockolate.runner.MockolateRule;
 	import mockolate.stub;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/tests/org/flexunit/token/ChildResultCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/org/flexunit/token/ChildResultCase.as b/FlexUnit4Test/src/tests/org/flexunit/token/ChildResultCase.as
index a416296..3d9a6c3 100644
--- a/FlexUnit4Test/src/tests/org/flexunit/token/ChildResultCase.as
+++ b/FlexUnit4Test/src/tests/org/flexunit/token/ChildResultCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 tests.org.flexunit.token
 {
 	import org.flexunit.Assert;


[03/41] removed digital primates copyright header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/Failure.as b/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
index 6947b1b..a3296a5 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification {
 	import flash.system.Capabilities;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
index 7bd29a2..c8a9857 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
index 364c8d1..2323a5c 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
index 5bc6a91..02fd274 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
index 01ea5a2..6a9edf2 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification
 {
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as b/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
index bfe2314..00a502a 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version	   0    
- **/ 
 package org.flexunit.runner.notification {
 	import org.flexunit.runner.IDescription;
 	import org.flexunit.runner.Result;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
index 546733e..db618fa 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification {
 	import org.flexunit.runner.Description;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as b/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
index 79a3c37..9785908 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as b/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
index 0a0eebd..b3895e8 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runner.notification
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as b/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
index 86fc319..8b41edc 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
  package org.flexunit.runner.notification.async {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as b/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
index 956bc68..46f50b8 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
@@ -1,31 +1,4 @@
 /**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Jeff Tapper 
- * @version    
- **/ 
-/**
  * notes
  * 
  * currently, im printing all successes, then all failures, then all ignores.
@@ -35,7 +8,6 @@
  * and when the tests are done, loop over the array and send the messages. 
  * 
  * */
-
 package org.flexunit.runner.notification.async
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as b/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
index 065230d..5b098b1 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Jeff Tapper 
- * @version    
- **/ 
-
 package org.flexunit.runner.notification.async
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as b/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
index 5b738c0..e691a67 100644
--- a/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
+++ b/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners {
 	import flash.utils.getQualifiedClassName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/Parameterized.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/Parameterized.as b/FlexUnit4/src/org/flexunit/runners/Parameterized.as
index 2092739..2320f76 100644
--- a/FlexUnit4/src/org/flexunit/runners/Parameterized.as
+++ b/FlexUnit4/src/org/flexunit/runners/Parameterized.as
@@ -1,34 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Alan Stearns - astearns@adobe.com
- * 			   Michael Labriola - labriola@digitalprimates.net
- * 			   David Wolever - david@wolever.net
- * @version
- *   
- **/
-
 package org.flexunit.runners
 {	
 	import flex.lang.reflect.Field;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/ParentRunner.as b/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
index 1070749..50d21fd 100644
--- a/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
+++ b/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners {
 	import org.flexunit.constants.AnnotationConstants;
 	import org.flexunit.internals.AssumptionViolatedException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/Suite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/Suite.as b/FlexUnit4/src/org/flexunit/runners/Suite.as
index a61e152..d4bebe5 100644
--- a/FlexUnit4/src/org/flexunit/runners/Suite.as
+++ b/FlexUnit4/src/org/flexunit/runners/Suite.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners {
 	import flex.lang.reflect.Klass;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as b/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
index 7b55c0b..a8191ad 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners.model {
 	import flex.lang.reflect.Method;
 	import flex.lang.reflect.metadata.MetaDataAnnotation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as b/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
index 193c5cd..7d7ee60 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners.model {
 	import org.flexunit.runner.IRunner;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/IStatement.as b/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
index 47b0b6c..a6cba86 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners.model {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as b/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
index 1622dc3..30fde19 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners.model {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/TestClass.as b/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
index ed36fa3..f6d4acb 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.runners.model {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as b/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
index cecb8ff..65be951 100644
--- a/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
+++ b/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 
 package org.flexunit.token {
 	import org.flexunit.runner.IRunner;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as b/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
index 9aff3ec..b69ff65 100644
--- a/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
+++ b/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 
 package org.flexunit.token {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/token/ChildResult.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/ChildResult.as b/FlexUnit4/src/org/flexunit/token/ChildResult.as
index 4abd82e..d8734f0 100644
--- a/FlexUnit4/src/org/flexunit/token/ChildResult.as
+++ b/FlexUnit4/src/org/flexunit/token/ChildResult.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.token {
 	/**
 	 * The <code>ChildResult</code> stores an <code>AsyncTestToken</code> and a potential <code>Error</code> 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as b/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
index 6c7ae38..3112855 100644
--- a/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
+++ b/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.token {
 	/**
 	 * Interface describing viable tokens to be passed between test stages

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as b/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
index c6f2c26..7c6323d 100644
--- a/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
+++ b/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.utils {
 	/**
 	 * The <code>ClassNameUtil</code> is responsible for assisting in the formatting of class names.

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as b/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
index b2ce392..a9af1e7 100644
--- a/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
+++ b/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version
- *   
- **/
 package org.flexunit.utils {
 	import org.flexunit.runner.IDescription;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as b/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
index 6679583..1fe6e11 100644
--- a/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
+++ b/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/ISequencePend.as b/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
index ea61791..a3bd454 100644
--- a/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
+++ b/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
  package org.fluint.sequence {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as b/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
index c195d98..47dff6f 100644
--- a/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
+++ b/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as b/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
index 2d3aeac..fcf6fd1 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as b/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
index 438d8c7..b6fc69f 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2008 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.sequence
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as b/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
index 9d1046f..b230fd3 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
@@ -1,33 +1,3 @@
-/**
- * Copyright (c) 2008 Jurgen Failenschmid
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author Jurgen Failenschmid
- * @see http://code.google.com/p/fluint/wiki/Sequences Test sequences
- * 
- * @modified Michael Labriola 
- * @purpose changes for FlexUnit 4 integration
- **/ 
 package org.fluint.sequence {
 
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as b/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
index 249712b..d5b9fd6 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.sequence
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as b/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
index e3e315f..ad63bb4 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
  package org.fluint.sequence {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as b/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
index 00fccf7..34340cf 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as b/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
index a290a75..d7d62a9 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
index 386c259..7c80146 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
-
 package org.fluint.uiImpersonation {
 	/**
 	 * 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
index 4190c9f..52a5b56 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.fluint.uiImpersonation
 {
 	import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as b/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
index 419dbf7..78a248a 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
  
  package org.fluint.uiImpersonation
 {

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
index 8998b28..88c4d20 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.fluint.uiImpersonation
 {
 	import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
index 6e1f659..648deb9 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.fluint.uiImpersonation {
 	import flash.display.DisplayObject;
 	import flash.display.DisplayObjectContainer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
index 1fa8a1d..6ea4fb4 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
-
 package org.fluint.uiImpersonation.actionScript {
 	import flash.display.DisplayObject;
 	import flash.display.DisplayObjectContainer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
index c0f3fbc..10b8e19 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
-
 package org.fluint.uiImpersonation.actionScript
 {
 	import flash.display.Sprite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
index 55ce186..5f49ea3 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
-
 package org.fluint.uiImpersonation.flex {
 	import flash.display.DisplayObject;
 	import flash.display.DisplayObjectContainer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
index e078ec6..831e9a3 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
-
 package org.fluint.uiImpersonation.flex {
 	import org.fluint.uiImpersonation.VisualTestEnvironment;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
index 41f3a43..d73600e 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
-
 package org.fluint.uiImpersonation.flex
 {
 	import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as b/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
index 2cc095c..a6cedad 100644
--- a/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
+++ b/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
@@ -1,31 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- *
- * @author     Jeff Tapper
- * @version
- **/
-
 package org.flexunit.listeners
 {
 	import flash.events.DataEvent;


[26/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
index 6ea4fb4..c5fa73c 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptEnvironmentBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation.actionScript {
 	import flash.display.DisplayObject;
 	import flash.display.DisplayObjectContainer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
index 10b8e19..d23392b 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/actionScript/ActionScriptVisualTestEnvironment.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation.actionScript
 {
 	import flash.display.Sprite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
index 5f49ea3..946170f 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexEnvironmentBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation.flex {
 	import flash.display.DisplayObject;
 	import flash.display.DisplayObjectContainer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
index 831e9a3..047694c 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexMXVisualTestEnvironment.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation.flex {
 	import org.fluint.uiImpersonation.VisualTestEnvironment;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
index d73600e..7b77fa7 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/flex/FlexSparkVisualTestEnvironment.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation.flex
 {
 	import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AirCIListener/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4AirCIListener/.actionScriptProperties b/FlexUnit4AirCIListener/.actionScriptProperties
index 6b5a6cf..0c00fc4 100644
--- a/FlexUnit4AirCIListener/.actionScriptProperties
+++ b/FlexUnit4AirCIListener/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <actionScriptProperties mainApplicationPath="FlexUnit4AirCIListener.as" version="3">
   <compiler additionalCompilerArguments="" copyDependentFiles="false" enableModuleDebug="true" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersion="9.0.124" htmlPlayerVersionCheck="true" outputFolderPath="bin" sourceFolderPath="src" strict="true" useApolloConfig="true" verifyDigests="true" warn="true">
     <compilerSourcePath/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AirCIListener/.flexLibProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4AirCIListener/.flexLibProperties b/FlexUnit4AirCIListener/.flexLibProperties
index 04d8bb0..5c986b6 100644
--- a/FlexUnit4AirCIListener/.flexLibProperties
+++ b/FlexUnit4AirCIListener/.flexLibProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <flexLibProperties version="1">
   <includeClasses>
     <classEntry path="org.flexunit.listeners.AirCIListener"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AirCIListener/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4AirCIListener/.project b/FlexUnit4AirCIListener/.project
index 7e3e39f..c183732 100644
--- a/FlexUnit4AirCIListener/.project
+++ b/FlexUnit4AirCIListener/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4AirCIListener</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AirCIListener/.settings/org.eclipse.core.resources.prefs
----------------------------------------------------------------------
diff --git a/FlexUnit4AirCIListener/.settings/org.eclipse.core.resources.prefs b/FlexUnit4AirCIListener/.settings/org.eclipse.core.resources.prefs
index 5e9e9e2..7a4e5fd 100644
--- a/FlexUnit4AirCIListener/.settings/org.eclipse.core.resources.prefs
+++ b/FlexUnit4AirCIListener/.settings/org.eclipse.core.resources.prefs
@@ -1,3 +1,18 @@
+# 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.
+
 #Tue Dec 08 16:51:23 EST 2009
 eclipse.preferences.version=1
 encoding/<project>=utf-8

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AirCIListener/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4AirCIListener/build.xml b/FlexUnit4AirCIListener/build.xml
index 51b8e0e..1168c67 100644
--- a/FlexUnit4AirCIListener/build.xml
+++ b/FlexUnit4AirCIListener/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project name="FlexUnit4AirCIListener" basedir="." default="package">
    <import file="${basedir}/../utils.xml" />
    <property environment="env" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AirCIListener/src/org/flexunit/listeners/AirCIListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AirCIListener/src/org/flexunit/listeners/AirCIListener.as b/FlexUnit4AirCIListener/src/org/flexunit/listeners/AirCIListener.as
index 7100321..8f6901d 100644
--- a/FlexUnit4AirCIListener/src/org/flexunit/listeners/AirCIListener.as
+++ b/FlexUnit4AirCIListener/src/org/flexunit/listeners/AirCIListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners
 {
 	import org.flexunit.listeners.closer.AirCloser;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AirCIListener/src/org/flexunit/listeners/closer/AirCloser.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AirCIListener/src/org/flexunit/listeners/closer/AirCloser.as b/FlexUnit4AirCIListener/src/org/flexunit/listeners/closer/AirCloser.as
index 7239913..f10d3c0 100644
--- a/FlexUnit4AirCIListener/src/org/flexunit/listeners/closer/AirCloser.as
+++ b/FlexUnit4AirCIListener/src/org/flexunit/listeners/closer/AirCloser.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners.closer
 {
 	import flash.desktop.NativeApplication;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/.classpath
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/.classpath b/FlexUnit4AntTasks/.classpath
index 022ca5e..3a72daa 100644
--- a/FlexUnit4AntTasks/.classpath
+++ b/FlexUnit4AntTasks/.classpath
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <classpath>
 	<classpathentry kind="src" path="src"/>
 	<classpathentry kind="src" path="test"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/.project b/FlexUnit4AntTasks/.project
index 0ffb5f8..3072a1d 100644
--- a/FlexUnit4AntTasks/.project
+++ b/FlexUnit4AntTasks/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4AntTasks</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/.settings/org.eclipse.jdt.core.prefs
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/.settings/org.eclipse.jdt.core.prefs b/FlexUnit4AntTasks/.settings/org.eclipse.jdt.core.prefs
index 0b69376..26d0029 100644
--- a/FlexUnit4AntTasks/.settings/org.eclipse.jdt.core.prefs
+++ b/FlexUnit4AntTasks/.settings/org.eclipse.jdt.core.prefs
@@ -1,3 +1,18 @@
+# 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.
+
 #Sat Feb 20 09:03:01 EST 2010
 eclipse.preferences.version=1
 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/build.xml b/FlexUnit4AntTasks/build.xml
index 07fc781..d41cf5d 100644
--- a/FlexUnit4AntTasks/build.xml
+++ b/FlexUnit4AntTasks/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project name="FlexUnitAntTasks" basedir="." default="package">
    <import file="${basedir}/../utils.xml" />
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketServer.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketServer.java b/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketServer.java
index e86e775..3307d8f 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketServer.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketServer.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant;
 
 import java.io.BufferedInputStream;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketThread.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketThread.java b/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketThread.java
index 5ca0238..bc0a6ff 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketThread.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/FlexUnitSocketThread.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/LoggingUtil.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/LoggingUtil.java b/FlexUnit4AntTasks/src/org/flexunit/ant/LoggingUtil.java
index 09d6857..4308d18 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/LoggingUtil.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/LoggingUtil.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant;
 
 public class LoggingUtil

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/OperatingSystem.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/OperatingSystem.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/OperatingSystem.java
index d86935c..71a969d 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/OperatingSystem.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/OperatingSystem.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher;
 
 import org.flexunit.ant.LoggingUtil;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/Command.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/Command.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/Command.java
index 943e89b..ab7c338 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/Command.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/Command.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncException.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncException.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncException.java
index 6959758..11a325b 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncException.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncException.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.headless;
 
 public class XvncException extends Exception

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStartCommand.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStartCommand.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStartCommand.java
index 034911e..b871dc3 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStartCommand.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStartCommand.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.headless;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStopCommand.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStopCommand.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStopCommand.java
index 7dafcd6..dea2a09 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStopCommand.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/headless/XvncStopCommand.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.headless;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/AdlCommand.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/AdlCommand.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/AdlCommand.java
index 11ef0b7..a6fe7e8 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/AdlCommand.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/AdlCommand.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.player;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/CustomPlayerCommand.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/CustomPlayerCommand.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/CustomPlayerCommand.java
index c59d93d..b99839e 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/CustomPlayerCommand.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/CustomPlayerCommand.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.player;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/DefaultPlayerCommand.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/DefaultPlayerCommand.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/DefaultPlayerCommand.java
index 5d04204..651bd30 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/DefaultPlayerCommand.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/DefaultPlayerCommand.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.player;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/FlashPlayerCommand.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/FlashPlayerCommand.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/FlashPlayerCommand.java
index 78a36ae..9bc5dd0 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/FlashPlayerCommand.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/FlashPlayerCommand.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.player;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommand.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommand.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommand.java
index 422031a..f2e8082 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommand.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommand.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.player;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommandFactory.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommandFactory.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommandFactory.java
index 7ed97ec..af2659d 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommandFactory.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/PlayerCommandFactory.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.player;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/TrustFile.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/TrustFile.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/TrustFile.java
index 8eb7a73..42a74b3 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/TrustFile.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/commands/player/TrustFile.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.commands.player;
 
 import java.io.BufferedReader;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/DefaultContext.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/DefaultContext.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/DefaultContext.java
index 5583119..d4a6c1f 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/DefaultContext.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/DefaultContext.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.contexts;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContext.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContext.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContext.java
index d03e072..105179a 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContext.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContext.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.contexts;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContextFactory.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContextFactory.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContextFactory.java
index bcf5841..319f132 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContextFactory.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/ExecutionContextFactory.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.contexts;
 
 import org.flexunit.ant.launcher.OperatingSystem;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/HeadlessContext.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/HeadlessContext.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/HeadlessContext.java
index 0b913be..833d079 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/HeadlessContext.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/contexts/HeadlessContext.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.contexts;
 
 import java.io.IOException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/LinuxDefaults.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/LinuxDefaults.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/LinuxDefaults.java
index c4203e8..10737ee 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/LinuxDefaults.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/LinuxDefaults.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.platforms;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/MacOSXDefaults.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/MacOSXDefaults.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/MacOSXDefaults.java
index 8991cc6..66437c9 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/MacOSXDefaults.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/MacOSXDefaults.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.platforms;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/PlatformDefaults.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/PlatformDefaults.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/PlatformDefaults.java
index 63b6036..0eff3cd 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/PlatformDefaults.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/PlatformDefaults.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.platforms;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/WindowsDefaults.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/WindowsDefaults.java b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/WindowsDefaults.java
index 04662a9..c601dcc 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/WindowsDefaults.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/WindowsDefaults.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.launcher.platforms;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/report/Report.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/report/Report.java b/FlexUnit4AntTasks/src/org/flexunit/ant/report/Report.java
index f096643..9687ade 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/report/Report.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/report/Report.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.report;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/report/Reports.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/report/Reports.java b/FlexUnit4AntTasks/src/org/flexunit/ant/report/Reports.java
index b40ba5c..79315b4 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/report/Reports.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/report/Reports.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.report;
 
 import java.text.MessageFormat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/report/Suite.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/report/Suite.java b/FlexUnit4AntTasks/src/org/flexunit/ant/report/Suite.java
index 7026390..3861f1d 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/report/Suite.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/report/Suite.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.report;
 
 public class Suite

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/Compilation.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/Compilation.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/Compilation.java
index 2135c32..1bc9026 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/Compilation.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/Compilation.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/FlexUnitTask.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/FlexUnitTask.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/FlexUnitTask.java
index 6cc626d..84cc7bc 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/FlexUnitTask.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/FlexUnitTask.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks;
 
 import org.apache.tools.ant.BuildException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/TestRun.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/TestRun.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/TestRun.java
index 763ca90..852e26c 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/TestRun.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/TestRun.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks;
 
 import java.util.concurrent.Callable;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/CompilationConfiguration.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/CompilationConfiguration.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/CompilationConfiguration.java
index 204f743..e51cf29 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/CompilationConfiguration.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/CompilationConfiguration.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.configuration;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/StepConfiguration.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/StepConfiguration.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/StepConfiguration.java
index 7a182f8..964b921 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/StepConfiguration.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/StepConfiguration.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.configuration;
 
 import org.apache.tools.ant.BuildException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TaskConfiguration.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TaskConfiguration.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TaskConfiguration.java
index 5587bbb..c158001 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TaskConfiguration.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TaskConfiguration.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.configuration;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TestRunConfiguration.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TestRunConfiguration.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TestRunConfiguration.java
index 6e7e44e..396c350 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TestRunConfiguration.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/configuration/TestRunConfiguration.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.configuration;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/CompilationFileSetCollection.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/CompilationFileSetCollection.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/CompilationFileSetCollection.java
index dc5efc9..078d760 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/CompilationFileSetCollection.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/CompilationFileSetCollection.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.types;
 
 import java.util.ArrayList;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LibraryPaths.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LibraryPaths.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LibraryPaths.java
index 5e32479..c310360 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LibraryPaths.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LibraryPaths.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.types;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LoadConfig.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LoadConfig.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LoadConfig.java
index 099d77c..a76e26e 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LoadConfig.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/LoadConfig.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.types;
 
 import org.apache.tools.ant.BuildException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/SourcePaths.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/SourcePaths.java b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/SourcePaths.java
index 6d7f384..3109e4e 100644
--- a/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/SourcePaths.java
+++ b/FlexUnit4AntTasks/src/org/flexunit/ant/tasks/types/SourcePaths.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.types;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/org/flexunit/ant/tasks/integration/FlexUnitTaskHarness.java
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/org/flexunit/ant/tasks/integration/FlexUnitTaskHarness.java b/FlexUnit4AntTasks/test/org/flexunit/ant/tasks/integration/FlexUnitTaskHarness.java
index f4c5e1d..43618de 100644
--- a/FlexUnit4AntTasks/test/org/flexunit/ant/tasks/integration/FlexUnitTaskHarness.java
+++ b/FlexUnit4AntTasks/test/org/flexunit/ant/tasks/integration/FlexUnitTaskHarness.java
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.ant.tasks.integration;
 
 import java.io.File;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/sandbox/src/A/Aclass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/sandbox/src/A/Aclass.as b/FlexUnit4AntTasks/test/sandbox/src/A/Aclass.as
index 78846aa..19d6a0e 100644
--- a/FlexUnit4AntTasks/test/sandbox/src/A/Aclass.as
+++ b/FlexUnit4AntTasks/test/sandbox/src/A/Aclass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 A
 {
 	public class Aclass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/sandbox/src/A/B/Bclass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/sandbox/src/A/B/Bclass.as b/FlexUnit4AntTasks/test/sandbox/src/A/B/Bclass.as
index b779042..a8914ac 100644
--- a/FlexUnit4AntTasks/test/sandbox/src/A/B/Bclass.as
+++ b/FlexUnit4AntTasks/test/sandbox/src/A/B/Bclass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 A.B
 {
 	public class Bclass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/sandbox/src/A/B/D/Dclass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/sandbox/src/A/B/D/Dclass.as b/FlexUnit4AntTasks/test/sandbox/src/A/B/D/Dclass.as
index 5345b93..c2c7b8d 100644
--- a/FlexUnit4AntTasks/test/sandbox/src/A/B/D/Dclass.as
+++ b/FlexUnit4AntTasks/test/sandbox/src/A/B/D/Dclass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 A.B.D
 {
 	public class Dclass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/sandbox/src/A/B/E/Eclass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/sandbox/src/A/B/E/Eclass.as b/FlexUnit4AntTasks/test/sandbox/src/A/B/E/Eclass.as
index 35666bf..7a0c4ee 100644
--- a/FlexUnit4AntTasks/test/sandbox/src/A/B/E/Eclass.as
+++ b/FlexUnit4AntTasks/test/sandbox/src/A/B/E/Eclass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 A.B.E
 {
 	public class Eclass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/sandbox/src/A/C/Cclass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/sandbox/src/A/C/Cclass.as b/FlexUnit4AntTasks/test/sandbox/src/A/C/Cclass.as
index 039eafb..5750c73 100644
--- a/FlexUnit4AntTasks/test/sandbox/src/A/C/Cclass.as
+++ b/FlexUnit4AntTasks/test/sandbox/src/A/C/Cclass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 A.C
 {
 	[Ignore]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/sandbox/src/A/C/F/Fclass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/sandbox/src/A/C/F/Fclass.as b/FlexUnit4AntTasks/test/sandbox/src/A/C/F/Fclass.as
index 1b8a7b3..9728d0b 100644
--- a/FlexUnit4AntTasks/test/sandbox/src/A/C/F/Fclass.as
+++ b/FlexUnit4AntTasks/test/sandbox/src/A/C/F/Fclass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 A.C.F
 {
 	public class Fclass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4AntTasks/test/sandbox/src/A/C/G/Gclass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/test/sandbox/src/A/C/G/Gclass.as b/FlexUnit4AntTasks/test/sandbox/src/A/C/G/Gclass.as
index 24ca7a0..1137a1d 100644
--- a/FlexUnit4AntTasks/test/sandbox/src/A/C/G/Gclass.as
+++ b/FlexUnit4AntTasks/test/sandbox/src/A/C/G/Gclass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 A.C.G
 {
 	public class Gclass


[23/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/RulesSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/RulesSuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/RulesSuite.as
index e6f8847..6a76c37 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/RulesSuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/RulesSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.TestRuleOrder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRuleOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRuleOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRuleOrder.as
index c51ec09..038bda6 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRuleOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRuleOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules.ordered.RuleFifty;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesBasicImplementation.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesBasicImplementation.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesBasicImplementation.as
index da9f348..81b76d5 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesBasicImplementation.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesBasicImplementation.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules.BasicImplementationRule;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesErrorWrapping.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesErrorWrapping.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesErrorWrapping.as
index 2e3bfc0..be9ec1a 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesErrorWrapping.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesErrorWrapping.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.helper.errors.RuleError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesRuleDoesntImplementIMethodRule.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesRuleDoesntImplementIMethodRule.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesRuleDoesntImplementIMethodRule.as
index b3e9f68..49a2463 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesRuleDoesntImplementIMethodRule.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/TestRulesRuleDoesntImplementIMethodRule.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite
 {
 	import flash.geom.Point;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/errors/RuleError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/errors/RuleError.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/errors/RuleError.as
index 3f4694e..f90b58c 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/errors/RuleError.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/errors/RuleError.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite.helper.errors
 {
 	public class RuleError extends Error

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/BasicImplementationRule.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/BasicImplementationRule.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/BasicImplementationRule.as
index dc998e6..5be5884 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/BasicImplementationRule.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/BasicImplementationRule.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.TestRulesBasicImplementation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ErrorWrappingRule.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ErrorWrappingRule.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ErrorWrappingRule.as
index f87794b..64051f6 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ErrorWrappingRule.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ErrorWrappingRule.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.helper.errors.RuleError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleFifty.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleFifty.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleFifty.as
index 53dcca8..cb61476 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleFifty.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleFifty.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules.ordered
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.TestRuleOrder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleNoOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleNoOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleNoOrder.as
index 0c5ba02..02d34de 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleNoOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleNoOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules.ordered
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.TestRuleOrder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleOne.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleOne.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleOne.as
index 5e69c25..f3b25e8 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleOne.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleOne.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules.ordered
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.TestRuleOrder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleTwo.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleTwo.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleTwo.as
index a846ecf..6b7ddec 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleTwo.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/rulesSuite/helper/rules/ordered/RuleTwo.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.rulesSuite.helper.rules.ordered
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.rulesSuite.TestRuleOrder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/AsyncTheorySuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/AsyncTheorySuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/AsyncTheorySuite.as
index 2d93ec9..b566294 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/AsyncTheorySuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/AsyncTheorySuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheoryDependencyDataSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheoryDependencyDataSuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheoryDependencyDataSuite.as
index 64c2ef6..0557595 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheoryDependencyDataSuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheoryDependencyDataSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.theorySuite.helper.SampleTheoryDataHelper;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheorySuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheorySuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheorySuite.as
index b0a0826..edfe662 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheorySuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/ExternalTheorySuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.theorySuite.helper.SampleTheoryDataHelper;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/FunctionalTheorySuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/FunctionalTheorySuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/FunctionalTheorySuite.as
index a60ac1e..7fc623c 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/FunctionalTheorySuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/FunctionalTheorySuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite {
 	import org.flexunit.assertThat;
 	import org.flexunit.assumeThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesSuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesSuite.as
index 9e25157..01a5df4 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesSuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesWithBeforeAfter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesWithBeforeAfter.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesWithBeforeAfter.as
index 599c609..a5d3e51 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesWithBeforeAfter.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TestTheoriesWithBeforeAfter.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
index 1a7c8ae..e4fb7bb 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/TheorySuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.theorySuite.AsyncTheorySuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/helper/SampleTheoryDataHelper.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/helper/SampleTheoryDataHelper.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/helper/SampleTheoryDataHelper.as
index 3ae049a..cd6a7c6 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/helper/SampleTheoryDataHelper.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/theorySuite/helper/SampleTheoryDataHelper.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.theorySuite.helper {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexSuite.as b/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexSuite.as
index 9a912c2..7164efa 100644
--- a/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.cases.TestAsynchronousFlex;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexUnitSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexUnitSuite.as b/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexUnitSuite.as
index 7c040e1..b443c82 100644
--- a/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexUnitSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/FlexUnit4FlexUnitSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit {
 	import org.flexunit.async.AsyncSuite;
 	import org.flexunit.cases.AssertCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/AsyncSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/AsyncSuite.as b/FlexUnit4Test/src/org/flexunit/async/AsyncSuite.as
index e391f2f..1afb3c2 100644
--- a/FlexUnit4Test/src/org/flexunit/async/AsyncSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/async/AsyncSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async
 {
 	import org.flexunit.async.cases.AsyncASCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/cases/AsyncASCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncASCase.as b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncASCase.as
index 770308d..6b2fd52 100644
--- a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncASCase.as
+++ b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncASCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.cases
 {
 	import org.flexunit.async.Async;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/cases/AsyncFlexCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncFlexCase.as b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncFlexCase.as
index cd188c0..761d65c 100644
--- a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncFlexCase.as
+++ b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncFlexCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.cases
 {
 	import org.flexunit.async.Async;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/cases/AsyncHandlerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncHandlerCase.as b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncHandlerCase.as
index ee7eaca..7cd978a 100644
--- a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncHandlerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncHandlerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/cases/AsyncLocatorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncLocatorCase.as b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncLocatorCase.as
index bd9c2e4..d06074c 100644
--- a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncLocatorCase.as
+++ b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncLocatorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.cases
 {
 	import flexunit.framework.TestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/cases/AsyncServiceCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncServiceCase.as b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncServiceCase.as
index d9cad82..482a01b 100644
--- a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncServiceCase.as
+++ b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncServiceCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/cases/AsyncTestResponderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncTestResponderCase.as b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncTestResponderCase.as
index 93edf4b..b6dc199 100644
--- a/FlexUnit4Test/src/org/flexunit/async/cases/AsyncTestResponderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/async/cases/AsyncTestResponderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/cases/TestResponderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/cases/TestResponderCase.as b/FlexUnit4Test/src/org/flexunit/async/cases/TestResponderCase.as
index d2ec2a5..a38a0de 100644
--- a/FlexUnit4Test/src/org/flexunit/async/cases/TestResponderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/async/cases/TestResponderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/mocks/EventDispatcherMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/mocks/EventDispatcherMock.as b/FlexUnit4Test/src/org/flexunit/async/mocks/EventDispatcherMock.as
index 47e7fc4..515dfe4 100644
--- a/FlexUnit4Test/src/org/flexunit/async/mocks/EventDispatcherMock.as
+++ b/FlexUnit4Test/src/org/flexunit/async/mocks/EventDispatcherMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/async/mocks/ResponderMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/async/mocks/ResponderMock.as b/FlexUnit4Test/src/org/flexunit/async/mocks/ResponderMock.as
index c8f7ece..69b63fd 100644
--- a/FlexUnit4Test/src/org/flexunit/async/mocks/ResponderMock.as
+++ b/FlexUnit4Test/src/org/flexunit/async/mocks/ResponderMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as b/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
index c283640..5f7e410 100644
--- a/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
+++ b/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/cases/AssertThatCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/cases/AssertThatCase.as b/FlexUnit4Test/src/org/flexunit/cases/AssertThatCase.as
index 193db6a..ee815e3 100644
--- a/FlexUnit4Test/src/org/flexunit/cases/AssertThatCase.as
+++ b/FlexUnit4Test/src/org/flexunit/cases/AssertThatCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.cases
 {
 	import org.flexunit.assertThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/cases/AssertionErrorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/cases/AssertionErrorCase.as b/FlexUnit4Test/src/org/flexunit/cases/AssertionErrorCase.as
index f33d21b..4cf300d 100644
--- a/FlexUnit4Test/src/org/flexunit/cases/AssertionErrorCase.as
+++ b/FlexUnit4Test/src/org/flexunit/cases/AssertionErrorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/cases/AssumeCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/cases/AssumeCase.as b/FlexUnit4Test/src/org/flexunit/cases/AssumeCase.as
index cbe11a9..0ec7b5d 100644
--- a/FlexUnit4Test/src/org/flexunit/cases/AssumeCase.as
+++ b/FlexUnit4Test/src/org/flexunit/cases/AssumeCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.cases
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/cases/AssumeThatCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/cases/AssumeThatCase.as b/FlexUnit4Test/src/org/flexunit/cases/AssumeThatCase.as
index 320aa10..1f8ab08 100644
--- a/FlexUnit4Test/src/org/flexunit/cases/AssumeThatCase.as
+++ b/FlexUnit4Test/src/org/flexunit/cases/AssumeThatCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.cases
 {
 	import org.flexunit.assumeThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/cases/IncludeFlexClassesCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/cases/IncludeFlexClassesCase.as b/FlexUnit4Test/src/org/flexunit/cases/IncludeFlexClassesCase.as
index eba5cb0..75b0423 100644
--- a/FlexUnit4Test/src/org/flexunit/cases/IncludeFlexClassesCase.as
+++ b/FlexUnit4Test/src/org/flexunit/cases/IncludeFlexClassesCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.cases
 {
 	import org.flexunit.IncludeFlexClasses;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/EventsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/EventsSuite.as b/FlexUnit4Test/src/org/flexunit/events/EventsSuite.as
index 5021994..688adba 100644
--- a/FlexUnit4Test/src/org/flexunit/events/EventsSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/events/EventsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events
 {
 	import org.flexunit.events.cases.AsyncEventCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/cases/AsyncEventCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/cases/AsyncEventCase.as b/FlexUnit4Test/src/org/flexunit/events/cases/AsyncEventCase.as
index 119761f..83bbcf2 100644
--- a/FlexUnit4Test/src/org/flexunit/events/cases/AsyncEventCase.as
+++ b/FlexUnit4Test/src/org/flexunit/events/cases/AsyncEventCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/cases/AsyncResponseEventCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/cases/AsyncResponseEventCase.as b/FlexUnit4Test/src/org/flexunit/events/cases/AsyncResponseEventCase.as
index fce5056..0655765 100644
--- a/FlexUnit4Test/src/org/flexunit/events/cases/AsyncResponseEventCase.as
+++ b/FlexUnit4Test/src/org/flexunit/events/cases/AsyncResponseEventCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/rule/EventRuleSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/rule/EventRuleSuite.as b/FlexUnit4Test/src/org/flexunit/events/rule/EventRuleSuite.as
index a4e96f9..bbe3e93 100644
--- a/FlexUnit4Test/src/org/flexunit/events/rule/EventRuleSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/events/rule/EventRuleSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule
 {
 	import org.flexunit.events.rule.cases.AsyncEventQuantityTesting;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventQuantityTesting.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventQuantityTesting.as b/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventQuantityTesting.as
index b8e523b..6d5ad14 100644
--- a/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventQuantityTesting.as
+++ b/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventQuantityTesting.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule.cases {
 	import flash.display.Sprite;
 	import flash.events.DataEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventTesting.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventTesting.as b/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventTesting.as
index 5ab8eb6..2dc610e 100644
--- a/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventTesting.as
+++ b/FlexUnit4Test/src/org/flexunit/events/rule/cases/AsyncEventTesting.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule.cases {
 	import flash.display.Sprite;
 	import flash.events.DataEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventQuantityTesting.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventQuantityTesting.as b/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventQuantityTesting.as
index c95c8f8..6445792 100644
--- a/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventQuantityTesting.as
+++ b/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventQuantityTesting.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule.cases {
 	import flash.display.Sprite;
 	import flash.events.DataEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventTesting.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventTesting.as b/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventTesting.as
index ec45ebb..cea2d3e 100644
--- a/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventTesting.as
+++ b/FlexUnit4Test/src/org/flexunit/events/rule/cases/SyncEventTesting.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule.cases {
 	import flash.display.Sprite;
 	import flash.events.DataEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/ExperimentSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/ExperimentSuite.as b/FlexUnit4Test/src/org/flexunit/experimental/ExperimentSuite.as
index 9e67fc5..eb52bf4 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/ExperimentSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/ExperimentSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental
 {
 	import org.flexunit.experimental.theories.ExperimentalTheoriesSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/results/cases/ResultMatchersClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/results/cases/ResultMatchersClass.as b/FlexUnit4Test/src/org/flexunit/experimental/results/cases/ResultMatchersClass.as
index 0914562..516f2bc 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/results/cases/ResultMatchersClass.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/results/cases/ResultMatchersClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.results.cases
 {
 	//Not yet implemented in FlexUnit4

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/ExperimentalRunnersStatementsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/ExperimentalRunnersStatementsSuite.as b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/ExperimentalRunnersStatementsSuite.as
index 443fb1e..6dc82ff 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/ExperimentalRunnersStatementsSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/ExperimentalRunnersStatementsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements
 {
 	import org.flexunit.experimental.runners.statements.cases.AssignmentSequencerCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/AssignmentSequencerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/AssignmentSequencerCase.as b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/AssignmentSequencerCase.as
index 782399e..93817c3 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/AssignmentSequencerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/AssignmentSequencerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements.cases
 {
 	import mockolate.mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/MethodCompleteWithParamStatementCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/MethodCompleteWithParamStatementCase.as b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/MethodCompleteWithParamStatementCase.as
index b406950..76fd057 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/MethodCompleteWithParamStatementCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/MethodCompleteWithParamStatementCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements.cases
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryAnchorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryAnchorCase.as b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryAnchorCase.as
index 868f32c..224ebb7 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryAnchorCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryAnchorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements.cases
 {
 	import mockolate.mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryBlockRunnerStatementCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryBlockRunnerStatementCase.as b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryBlockRunnerStatementCase.as
index cb1f084..07f63a2 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryBlockRunnerStatementCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/runners/statements/cases/TheoryBlockRunnerStatementCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements.cases
 {
 	import mockolate.mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/theories/ExperimentalTheoriesSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/theories/ExperimentalTheoriesSuite.as b/FlexUnit4Test/src/org/flexunit/experimental/theories/ExperimentalTheoriesSuite.as
index 7bfced9..1d3521c 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/theories/ExperimentalTheoriesSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/theories/ExperimentalTheoriesSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories
 {
 	import org.flexunit.experimental.theories.cases.ParameterSignatureCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/ParameterSignatureCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/ParameterSignatureCase.as b/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/ParameterSignatureCase.as
index f719f55..fed3f00 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/ParameterSignatureCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/ParameterSignatureCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.cases
 {
 	import flex.lang.reflect.Constructor;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/PotentialAssignmentCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/PotentialAssignmentCase.as b/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/PotentialAssignmentCase.as
index c9793be..8353768 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/PotentialAssignmentCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/theories/cases/PotentialAssignmentCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/ExperimentalTheoriesInteralsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/ExperimentalTheoriesInteralsSuite.as b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/ExperimentalTheoriesInteralsSuite.as
index 2d7e79a..a2fd247 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/ExperimentalTheoriesInteralsSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/ExperimentalTheoriesInteralsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals
 {
 	import org.flexunit.experimental.theories.internals.cases.AssignmentsCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/AssignmentsCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/AssignmentsCase.as b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/AssignmentsCase.as
index 72ca80d..d66958a 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/AssignmentsCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/AssignmentsCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals.cases
 {
 	import mockolate.mock;


[28/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
index 38baca8..f182c7f 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders {
 	import org.flexunit.runner.IRunner;
 	import org.flexunit.runners.model.IRunnerBuilder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
index dbda90b..ae2d2d8 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders {
 	import flex.lang.reflect.Klass;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
index 20d3e3a..51d3389 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.dependency {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
index cec36fe..1b28c3e 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.dependency {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
index c0e1a38..ecc046f 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.dependency {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
index b257e4e..618dc27 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.dependency {
 	import org.flexunit.token.AsyncCoreStartupToken;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as b/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
index b35538e..a3823c6 100644
--- a/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
+++ b/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.events
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as b/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
index 532f6ac..7878fd2 100644
--- a/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
+++ b/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals
 {
 /**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as b/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
index 8fa6cef..1c20f86 100644
--- a/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
+++ b/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.listeners
 {
 	import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListenerView.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListenerView.mxml b/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListenerView.mxml
index 1344c8b..cf26049 100644
--- a/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListenerView.mxml
+++ b/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListenerView.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:HDividedBox xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%">
 	<mx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/matchers/Each.as b/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
index 64113d7..fa34273 100644
--- a/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
+++ b/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.matchers
 {
 	import org.hamcrest.Matcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as b/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
index 349178f..57c17af 100644
--- a/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
+++ b/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.namespaces
 {
 	public namespace classInternal = "http://www.adobe.com/2009/flexunit/classInternal";

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
index 0e78285..a69e803 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests {
 	import org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder;
 	import org.flexunit.internals.namespaces.classInternal;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
index bb78c7a..78c1abb 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests {
 	import org.flexunit.internals.runners.ErrorReportingRunner;
 	import org.flexunit.runner.IRequest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
index b2fd4e3..3b724fa 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests {
 	import org.flexunit.internals.builders.OnlyRecognizedTestClassBuilder;
 	import org.flexunit.runner.Request;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
index 29f4f47..5db1493 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests
 {
 	import org.flexunit.runner.IRequest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as b/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
index bbc024a..34816b1 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as b/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
index 3dc3b78..92cb0fd 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners {
 	import org.flexunit.runner.Description;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as b/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
index dae1636..ab585ba 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as b/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
index 92a0cc8..1052c46 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as b/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
index 695116f..d926492 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners {
 	import flex.lang.reflect.Klass;
 	import flex.lang.reflect.Method;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as b/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
index c542114..020b27d 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.model {
 	import org.flexunit.runner.IDescription;
 	import org.flexunit.runner.notification.Failure;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as b/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
index 6a68863..d532e07 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.model {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as b/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
index a7dc971..058d254 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.model {
 	/**
 	 * The <code>MultipleFailureExecption</code> is used to store information on multiple errors

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
index 4aa34b9..539b0ed 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	
 	import org.flexunit.token.AsyncTestToken;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
index 7a03ad5..9e2e2fa 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import flash.events.Event;
 	import flash.net.Responder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
index cefc41d..cc82883 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/ExpectException.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
index 46a186f..48e01e2 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/Fail.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import org.flexunit.internals.runners.statements.AsyncStatementBase;
 	import org.flexunit.internals.runners.statements.IAsyncStatement;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
index ab98106..b9bf4be 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/FailOnTimeout.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
index fc24fc2..c82f399 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncHandlingStatement.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
index d5316b1..dc1d540 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/IAsyncStatement.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	
 	import org.flexunit.token.AsyncTestToken;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
index a67cf75..41ba0cf 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/InvokeMethod.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import org.flexunit.internals.runners.statements.AsyncStatementBase;
 	import org.flexunit.internals.runners.statements.IAsyncStatement;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
index 54d0f44..77cc5d7 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/MethodRuleBase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import org.flexunit.runners.model.FrameworkMethod;
 	import org.flexunit.token.AsyncTestToken;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
index 92eaf06..6307b9b 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAfters.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements
 {
 	import org.flexunit.async.AsyncLocator;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
index b4d2583..76cbec4 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements
 {
 	import org.flexunit.async.AsyncLocator;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
index 127fe80..97d637c 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunAftersInline.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import org.flexunit.internals.runners.model.MultipleFailureException;
 	import org.flexunit.token.AsyncTestToken;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
index 04c4674..734ecf9 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBefores.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import org.flexunit.async.AsyncLocator;
 	import org.flexunit.constants.AnnotationConstants;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
index c6af8e6..20c4b00 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import org.flexunit.async.AsyncLocator;
 	import org.flexunit.constants.AnnotationConstants;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
index 6fc1caf..035de4b 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/RunBeforesInline.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import org.flexunit.token.AsyncTestToken;
 	import org.flexunit.token.ChildResult;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
index 3d6dcf5..f495caa 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/SequencerWithDecoration.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements
 {
 	import org.flexunit.runners.model.FrameworkMethod;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
index fa5f5f9..6e23c06 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/StackAndFrameManagement.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import flash.display.Stage;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
index 2b8cc2b..069f1dd 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/StatementSequencer.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as b/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
index 95164d9..419a293 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/watcher/FrameWatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.watcher {
 	import flash.display.DisplayObject;
 	import flash.display.Stage;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as b/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
index 7fe4060..b1f82f1 100644
--- a/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
+++ b/FlexUnit4/src/org/flexunit/reporting/FailureFormatter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.reporting {
 	import flash.utils.getQualifiedClassName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/rules/IMethodRule.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/rules/IMethodRule.as b/FlexUnit4/src/org/flexunit/rules/IMethodRule.as
index ac54afe..099b1ad 100644
--- a/FlexUnit4/src/org/flexunit/rules/IMethodRule.as
+++ b/FlexUnit4/src/org/flexunit/rules/IMethodRule.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.rules {
 	import org.flexunit.internals.runners.statements.IAsyncStatement;
 	import org.flexunit.runners.model.FrameworkMethod;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/Description.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Description.as b/FlexUnit4/src/org/flexunit/runner/Description.as
index 92959cc..1f89e49 100644
--- a/FlexUnit4/src/org/flexunit/runner/Description.as
+++ b/FlexUnit4/src/org/flexunit/runner/Description.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner {
 	import flash.utils.getQualifiedClassName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/Descriptor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Descriptor.as b/FlexUnit4/src/org/flexunit/runner/Descriptor.as
index efbb7ef..8b9a206 100644
--- a/FlexUnit4/src/org/flexunit/runner/Descriptor.as
+++ b/FlexUnit4/src/org/flexunit/runner/Descriptor.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as b/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
index c1e029f..6375fbb 100644
--- a/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
+++ b/FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner {
 	import flash.display.DisplayObjectContainer;
 	import flash.display.LoaderInfo;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/IDescribable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IDescribable.as b/FlexUnit4/src/org/flexunit/runner/IDescribable.as
index 6bafd5d..50762f2 100644
--- a/FlexUnit4/src/org/flexunit/runner/IDescribable.as
+++ b/FlexUnit4/src/org/flexunit/runner/IDescribable.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner {
 	/**
 	 * The <code>IDescribable</code> interface is to be used by classes that can produce an

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/IDescription.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IDescription.as b/FlexUnit4/src/org/flexunit/runner/IDescription.as
index ddb6eb8..7665f1b 100644
--- a/FlexUnit4/src/org/flexunit/runner/IDescription.as
+++ b/FlexUnit4/src/org/flexunit/runner/IDescription.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/IRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IRequest.as b/FlexUnit4/src/org/flexunit/runner/IRequest.as
index 4f5f7e6..d599e81 100644
--- a/FlexUnit4/src/org/flexunit/runner/IRequest.as
+++ b/FlexUnit4/src/org/flexunit/runner/IRequest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner {
 	import org.flexunit.runner.manipulation.ISort;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/IRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/IRunner.as b/FlexUnit4/src/org/flexunit/runner/IRunner.as
index 232d49c..564a1fa 100644
--- a/FlexUnit4/src/org/flexunit/runner/IRunner.as
+++ b/FlexUnit4/src/org/flexunit/runner/IRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner
 {
 	import org.flexunit.runner.notification.IRunNotifier;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/Request.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Request.as b/FlexUnit4/src/org/flexunit/runner/Request.as
index 282aa46..d0c733b 100644
--- a/FlexUnit4/src/org/flexunit/runner/Request.as
+++ b/FlexUnit4/src/org/flexunit/runner/Request.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner {
 	import org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder;
 	import org.flexunit.internals.namespaces.classInternal;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/Result.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/Result.as b/FlexUnit4/src/org/flexunit/runner/Result.as
index 4648b54..dbf333f 100644
--- a/FlexUnit4/src/org/flexunit/runner/Result.as
+++ b/FlexUnit4/src/org/flexunit/runner/Result.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner {
 	import org.flexunit.internals.namespaces.classInternal;
 	import org.flexunit.runner.notification.RunListener;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as b/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
index 0ed61f6..dd91e9a 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/ExternalDependencyToken.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.external {
 	import flex.lang.reflect.Field;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
index 908e907..d62addb 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyData.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.external {
 	/**
 	 * Extension to the IExternalDependencyLoader concept which allows a given class

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
index 875bff4..c36828c 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyLoader.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.external {
 	/**
 	 * Allows the user to specify a static variable of type IExternalDependencyLoader. This class

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
index 49e95fa..410b33a 100644
--- a/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
+++ b/FlexUnit4/src/org/flexunit/runner/external/IExternalDependencyRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.external {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/IFilter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/IFilter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/IFilter.as
index 9b7fbe8..d810392 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/IFilter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/IFilter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation {
 	import org.flexunit.runner.IDescription;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as b/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
index 6591c19..88bcf85 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/IFilterable.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation
 {
 	


[36/41] git commit: updated gitignore - ignore libs folder

Posted by cz...@apache.org.
updated gitignore - ignore libs folder


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/b33e4c47
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/b33e4c47
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/b33e4c47

Branch: refs/heads/makeFlexUnitApacheReady
Commit: b33e4c47aa41f8f93854462a4d86b93e471e5ee5
Parents: 81c486b
Author: cyrill.zadra <cy...@gmail.com>
Authored: Wed May 22 00:01:48 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Wed May 22 00:01:48 2013 +0800

----------------------------------------------------------------------
 FlexUnit4/.gitignore                 |    1 +
 FlexUnit4FluintExtensions/.gitignore |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/b33e4c47/FlexUnit4/.gitignore
----------------------------------------------------------------------
diff --git a/FlexUnit4/.gitignore b/FlexUnit4/.gitignore
index ec86ac9..9d44188 100644
--- a/FlexUnit4/.gitignore
+++ b/FlexUnit4/.gitignore
@@ -1,2 +1,3 @@
 /.actionScriptProperties
 /in/
+/libs/

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/b33e4c47/FlexUnit4FluintExtensions/.gitignore
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/.gitignore b/FlexUnit4FluintExtensions/.gitignore
new file mode 100644
index 0000000..25f7406
--- /dev/null
+++ b/FlexUnit4FluintExtensions/.gitignore
@@ -0,0 +1 @@
+/libs/


[21/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/TestableExpectAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/TestableExpectAsync.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/TestableExpectAsync.as
index fca2f69..99b48d1 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/TestableExpectAsync.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/TestableExpectAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.mock
 {
 	import org.flexunit.internals.runners.statements.ExpectAsync;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/matchers/cases/FlexUnitMatchersCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/matchers/cases/FlexUnitMatchersCase.as b/FlexUnit4Test/src/org/flexunit/matchers/cases/FlexUnitMatchersCase.as
index 1bf23a2..5d4cb83 100644
--- a/FlexUnit4Test/src/org/flexunit/matchers/cases/FlexUnitMatchersCase.as
+++ b/FlexUnit4Test/src/org/flexunit/matchers/cases/FlexUnitMatchersCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.matchers.cases
 {
 	public class FlexUnitMatchersCase

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/reporting/ReportingSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/reporting/ReportingSuite.as b/FlexUnit4Test/src/org/flexunit/reporting/ReportingSuite.as
index f26761c..90df7d0 100644
--- a/FlexUnit4Test/src/org/flexunit/reporting/ReportingSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/reporting/ReportingSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.reporting
 {
 	import org.flexunit.reporting.cases.FailureFormatterASCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterASCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterASCase.as b/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterASCase.as
index f3e56d7..a0476a2 100644
--- a/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterASCase.as
+++ b/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterASCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.reporting.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterFlexCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterFlexCase.as b/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterFlexCase.as
index 710518a..deb2a38 100644
--- a/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterFlexCase.as
+++ b/FlexUnit4Test/src/org/flexunit/reporting/cases/FailureFormatterFlexCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.reporting.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/RunnerSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/RunnerSuite.as b/FlexUnit4Test/src/org/flexunit/runner/RunnerSuite.as
index 654566f..1a0ed92 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/RunnerSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/RunnerSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner
 {
 	import org.flexunit.runner.cases.DescriptionCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptionCase.as b/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptionCase.as
index 39feea4..703c769 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptionCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.cases
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptorCase.as b/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptorCase.as
index 958250c..dc1aff6 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptorCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/cases/DescriptorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.cases
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/cases/RequestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/cases/RequestCase.as b/FlexUnit4Test/src/org/flexunit/runner/cases/RequestCase.as
index 0a3ce9a..61bd392 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/cases/RequestCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/cases/RequestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/cases/ResultCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/cases/ResultCase.as b/FlexUnit4Test/src/org/flexunit/runner/cases/ResultCase.as
index f30cdd7..daa01d0 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/cases/ResultCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/cases/ResultCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/ManipulationSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/ManipulationSuite.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/ManipulationSuite.as
index d7ee877..bb17826 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/ManipulationSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/ManipulationSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation
 {
 	import org.flexunit.runner.manipulation.cases.FilterCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/FilterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/FilterCase.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/FilterCase.as
index 553667a..96028ff 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/FilterCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/FilterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataAlphabeticalSorterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataAlphabeticalSorterCase.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataAlphabeticalSorterCase.as
index 3136ec5..1d18f54 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataAlphabeticalSorterCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataAlphabeticalSorterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.cases
 {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataSorterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataSorterCase.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataSorterCase.as
index e242629..773ef29 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataSorterCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/MetadataSorterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.cases
 {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/NoTestsRemainExceptionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/NoTestsRemainExceptionCase.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/NoTestsRemainExceptionCase.as
index 3e5376d..f3eaaaa 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/NoTestsRemainExceptionCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/NoTestsRemainExceptionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/SorterCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/SorterCase.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/SorterCase.as
index 8bb5fbc..d749596 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/SorterCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/cases/SorterCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/BasicFilterMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/BasicFilterMock.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/BasicFilterMock.as
index d13463d..19d08bd 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/BasicFilterMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/BasicFilterMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.mocks {
 	import com.anywebcam.mock.Mock;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterMock.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterMock.as
index 326feac..22029f0 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterableMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterableMock.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterableMock.as
index af6f869..486b783 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterableMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/FilterableMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortMock.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortMock.as
index 11eb12f..c39585d 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortableMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortableMock.as b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortableMock.as
index ce4cbdd..3ad3926 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortableMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/manipulation/mocks/SortableMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionMock.as b/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionMock.as
index 831252a..1d12b15 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionTestCaseMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionTestCaseMock.as b/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionTestCaseMock.as
index 82874e8..9b9bcd9 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionTestCaseMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/mocks/DescriptionTestCaseMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.mocks
 {
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/mocks/RequestMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/mocks/RequestMock.as b/FlexUnit4Test/src/org/flexunit/runner/mocks/RequestMock.as
index 60fb3ab..dbf0f9d 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/mocks/RequestMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/mocks/RequestMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/mocks/ResultMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/mocks/ResultMock.as b/FlexUnit4Test/src/org/flexunit/runner/mocks/ResultMock.as
index 37e0242..23c5638 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/mocks/ResultMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/mocks/ResultMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/mocks/RunnerMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/mocks/RunnerMock.as b/FlexUnit4Test/src/org/flexunit/runner/mocks/RunnerMock.as
index f45f394..103cdf9 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/mocks/RunnerMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/mocks/RunnerMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/NotificationSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/NotificationSuite.as b/FlexUnit4Test/src/org/flexunit/runner/notification/NotificationSuite.as
index aba9be8..7cdc911 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/NotificationSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/NotificationSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification
 {
 	import org.flexunit.runner.notification.async.AsyncSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/async/AsyncSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/async/AsyncSuite.as b/FlexUnit4Test/src/org/flexunit/runner/notification/async/AsyncSuite.as
index 9802984..7d6daed 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/async/AsyncSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/async/AsyncSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.async
 {
 	import org.flexunit.runner.notification.async.cases.AsyncListenerWatcherCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/AsyncListenerWatcherCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/AsyncListenerWatcherCase.as b/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/AsyncListenerWatcherCase.as
index 9ebb231..dbbb0f7 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/AsyncListenerWatcherCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/AsyncListenerWatcherCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.async.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/WaitingListenerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/WaitingListenerCase.as b/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/WaitingListenerCase.as
index 9597ac7..b4d12f9 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/WaitingListenerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/WaitingListenerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.async.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/XMLListenerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/XMLListenerCase.as b/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/XMLListenerCase.as
index 46ee49a..67db1dc 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/XMLListenerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/async/cases/XMLListenerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.async.cases
 {
 	import org.flexunit.AssertionError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/cases/FailureCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/cases/FailureCase.as b/FlexUnit4Test/src/org/flexunit/runner/notification/cases/FailureCase.as
index f9f2d7e..7a508b8 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/cases/FailureCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/cases/FailureCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.cases
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunListenerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunListenerCase.as b/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunListenerCase.as
index daa2865..21163dd 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunListenerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunListenerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.cases
 {
 	public class RunListenerCase

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunNotifierCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunNotifierCase.as b/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunNotifierCase.as
index e8dd39d..16ea0de 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunNotifierCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/cases/RunNotifierCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.cases
 {
 	import org.flexunit.runner.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncCompletionRunListenerMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncCompletionRunListenerMock.as b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncCompletionRunListenerMock.as
index 57614e5..7d9f011 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncCompletionRunListenerMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncCompletionRunListenerMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncStartupRunListenerMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncStartupRunListenerMock.as b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncStartupRunListenerMock.as
index aa979fd..9dbb8b3 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncStartupRunListenerMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/AsyncStartupRunListenerMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/FailureMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/FailureMock.as b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/FailureMock.as
index 81615b0..bf6ae87 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/FailureMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/FailureMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunListenerMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunListenerMock.as b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunListenerMock.as
index c0c3372..f18c2c3 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunListenerMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunListenerMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunNotifierMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunNotifierMock.as b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunNotifierMock.as
index 751ae54..3cc7350 100644
--- a/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunNotifierMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runner/notification/mocks/RunNotifierMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/RunnersSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/RunnersSuite.as b/FlexUnit4Test/src/org/flexunit/runners/RunnersSuite.as
index a4c903a..0ae29b8 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/RunnersSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/RunnersSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners
 {
 	import org.flexunit.runners.cases.BlockFlexUnit4ClassRunnerCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/cases/BlockFlexUnit4ClassRunnerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/cases/BlockFlexUnit4ClassRunnerCase.as b/FlexUnit4Test/src/org/flexunit/runners/cases/BlockFlexUnit4ClassRunnerCase.as
index e90c68f..7491354 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/cases/BlockFlexUnit4ClassRunnerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/cases/BlockFlexUnit4ClassRunnerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.cases
 {
 	import org.flexunit.runners.BlockFlexUnit4ClassRunner;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/cases/ParameterizedCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/cases/ParameterizedCase.as b/FlexUnit4Test/src/org/flexunit/runners/cases/ParameterizedCase.as
index ba097e2..f504396 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/cases/ParameterizedCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/cases/ParameterizedCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.cases
 {
 	import org.flexunit.runners.Parameterized;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/cases/ParentRunnerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/cases/ParentRunnerCase.as b/FlexUnit4Test/src/org/flexunit/runners/cases/ParentRunnerCase.as
index a8df651..42cc90b 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/cases/ParentRunnerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/cases/ParentRunnerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/cases/RunRulesCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/cases/RunRulesCase.as b/FlexUnit4Test/src/org/flexunit/runners/cases/RunRulesCase.as
index fc2d189..b4fdc33 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/cases/RunRulesCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/cases/RunRulesCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.cases {
 	import org.flexunit.runners.cases.stub.SynchronousRule;
 	import org.flexunit.runners.cases.stub.AsynchronousRule;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/cases/SuiteCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/cases/SuiteCase.as b/FlexUnit4Test/src/org/flexunit/runners/cases/SuiteCase.as
index 90179e9..c720fb9 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/cases/SuiteCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/cases/SuiteCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/cases/stub/AsynchronousRule.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/cases/stub/AsynchronousRule.as b/FlexUnit4Test/src/org/flexunit/runners/cases/stub/AsynchronousRule.as
index 3d3007b..da02d4e 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/cases/stub/AsynchronousRule.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/cases/stub/AsynchronousRule.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.cases.stub {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/cases/stub/SynchronousRule.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/cases/stub/SynchronousRule.as b/FlexUnit4Test/src/org/flexunit/runners/cases/stub/SynchronousRule.as
index 69117ce..45fcfbb 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/cases/stub/SynchronousRule.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/cases/stub/SynchronousRule.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.cases.stub {
 	import org.flexunit.internals.runners.statements.IAsyncStatement;
 	import org.flexunit.internals.runners.statements.MethodRuleBase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/mocks/RunnerLocatorMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/mocks/RunnerLocatorMock.as b/FlexUnit4Test/src/org/flexunit/runners/mocks/RunnerLocatorMock.as
index 438955f..c768f9b 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/mocks/RunnerLocatorMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/mocks/RunnerLocatorMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/model/ModelSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/model/ModelSuite.as b/FlexUnit4Test/src/org/flexunit/runners/model/ModelSuite.as
index ecff9ee..9bbae85 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/model/ModelSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/model/ModelSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model
 {
 	import org.flexunit.runners.model.cases.TestClassCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/model/cases/FrameworkMethodCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/model/cases/FrameworkMethodCase.as b/FlexUnit4Test/src/org/flexunit/runners/model/cases/FrameworkMethodCase.as
index d15e9dd..dd47356 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/model/cases/FrameworkMethodCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/model/cases/FrameworkMethodCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model.cases
 {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/model/cases/RunnerBuilderBaseCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/model/cases/RunnerBuilderBaseCase.as b/FlexUnit4Test/src/org/flexunit/runners/model/cases/RunnerBuilderBaseCase.as
index 79af418..5806fdd 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/model/cases/RunnerBuilderBaseCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/model/cases/RunnerBuilderBaseCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/model/cases/TestClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/model/cases/TestClassCase.as b/FlexUnit4Test/src/org/flexunit/runners/model/cases/TestClassCase.as
index 976fb1d..4935409 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/model/cases/TestClassCase.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/model/cases/TestClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model.cases
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/model/mocks/FrameworkMethodMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/model/mocks/FrameworkMethodMock.as b/FlexUnit4Test/src/org/flexunit/runners/model/mocks/FrameworkMethodMock.as
index 00b55c0..0974ddb 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/model/mocks/FrameworkMethodMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/model/mocks/FrameworkMethodMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/model/mocks/RunnerBuilderMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/model/mocks/RunnerBuilderMock.as b/FlexUnit4Test/src/org/flexunit/runners/model/mocks/RunnerBuilderMock.as
index 4fd5899..0d8f59e 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/model/mocks/RunnerBuilderMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/model/mocks/RunnerBuilderMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/runners/model/mocks/TestClassMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/runners/model/mocks/TestClassMock.as b/FlexUnit4Test/src/org/flexunit/runners/model/mocks/TestClassMock.as
index 8e7fc61..151a993 100644
--- a/FlexUnit4Test/src/org/flexunit/runners/model/mocks/TestClassMock.as
+++ b/FlexUnit4Test/src/org/flexunit/runners/model/mocks/TestClassMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/token/TokenSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/token/TokenSuite.as b/FlexUnit4Test/src/org/flexunit/token/TokenSuite.as
index 8de3dc2..0dd5dde 100644
--- a/FlexUnit4Test/src/org/flexunit/token/TokenSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/token/TokenSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token
 {
 	import org.flexunit.token.cases.AsyncCoreStartupTokenCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/token/cases/AsyncCoreStartupTokenCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/token/cases/AsyncCoreStartupTokenCase.as b/FlexUnit4Test/src/org/flexunit/token/cases/AsyncCoreStartupTokenCase.as
index 3ed2c29..114331b 100644
--- a/FlexUnit4Test/src/org/flexunit/token/cases/AsyncCoreStartupTokenCase.as
+++ b/FlexUnit4Test/src/org/flexunit/token/cases/AsyncCoreStartupTokenCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/token/cases/AsyncTestTokenCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/token/cases/AsyncTestTokenCase.as b/FlexUnit4Test/src/org/flexunit/token/cases/AsyncTestTokenCase.as
index 87c1bea..2fdf1ac 100644
--- a/FlexUnit4Test/src/org/flexunit/token/cases/AsyncTestTokenCase.as
+++ b/FlexUnit4Test/src/org/flexunit/token/cases/AsyncTestTokenCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/token/cases/ChildResultCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/token/cases/ChildResultCase.as b/FlexUnit4Test/src/org/flexunit/token/cases/ChildResultCase.as
index f666b59..293a883 100644
--- a/FlexUnit4Test/src/org/flexunit/token/cases/ChildResultCase.as
+++ b/FlexUnit4Test/src/org/flexunit/token/cases/ChildResultCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/token/mocks/AsyncTestTokenMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/token/mocks/AsyncTestTokenMock.as b/FlexUnit4Test/src/org/flexunit/token/mocks/AsyncTestTokenMock.as
index 2604b52..ee9948b 100644
--- a/FlexUnit4Test/src/org/flexunit/token/mocks/AsyncTestTokenMock.as
+++ b/FlexUnit4Test/src/org/flexunit/token/mocks/AsyncTestTokenMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/utils/ClassNameUtilCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/utils/ClassNameUtilCase.as b/FlexUnit4Test/src/org/flexunit/utils/ClassNameUtilCase.as
index e9dcbcf..bd4b3fe 100644
--- a/FlexUnit4Test/src/org/flexunit/utils/ClassNameUtilCase.as
+++ b/FlexUnit4Test/src/org/flexunit/utils/ClassNameUtilCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.utils
 {
 	import org.flexunit.Assert;


[05/41] removed digital primates copyright header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
index 5a0c52a..48467c6 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.runners.statements
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
index c0234fc..842eda4 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.runners.statements {
 	import flex.lang.reflect.Klass;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
index 7adc23c..bb76ec7 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.runners.statements
 {
 	import org.flexunit.experimental.theories.internals.Assignments;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as b/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
index e732062..af94566 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as b/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
index 0a17cd2..aa4b2d9 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories {
 	/**
 	 * The <code>IPotentialAssignment</code> interface is used by classes that want to store poential values that will

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as b/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
index 2ec3836..edf3663 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories {
 	import flex.lang.reflect.Constructor;
 	import flex.lang.reflect.Field;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as b/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
index c35f972..517fe78 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as b/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
index 9f82591..b8710e6 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories {
 	import flex.lang.reflect.Field;
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
index d70db91..5adb911 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories.internals
 {
 	import flex.lang.reflect.Field;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
index 3f43eda..f98c85b 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories.internals {
 	import flex.lang.reflect.Constructor;
 	import flex.lang.reflect.Method;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
index e827d97..81b80e6 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories.internals {
 	import org.flexunit.AssertionError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
index e4d3441..2af1e20 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.experimental.theories.internals.error
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as b/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
index f9cf486..15362f4 100644
--- a/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
+++ b/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals
 {
 	import org.hamcrest.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/TextListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/TextListener.as b/FlexUnit4/src/org/flexunit/internals/TextListener.as
index 5f005a0..9f878a6 100644
--- a/FlexUnit4/src/org/flexunit/internals/TextListener.as
+++ b/FlexUnit4/src/org/flexunit/internals/TextListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals {
 	import mx.formatters.NumberFormatter;
 	import mx.logging.ILogger;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/TraceListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/TraceListener.as b/FlexUnit4/src/org/flexunit/internals/TraceListener.as
index 9be2fc3..7c4d694 100644
--- a/FlexUnit4/src/org/flexunit/internals/TraceListener.as
+++ b/FlexUnit4/src/org/flexunit/internals/TraceListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals {
 	import org.flexunit.reporting.FailureFormatter;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
index caa546c..1bf36b7 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders {
 	import flash.utils.getDefinitionByName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
index 5eeb44e..d91559d 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
index 7385ae4..f860aec 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders
 {
 	import org.flexunit.runner.IRunner;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
index b89638e..6f7705c 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
index 1fb6556..6fa9dbe 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
index 60e540b..ef6cb43 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders {
 	import org.flexunit.runner.Description;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
index b977c4d..86cf1a2 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders {
 	import flash.utils.getDefinitionByName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
index 3b293de..62716ae 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders
 {
 	import org.flexunit.runners.model.RunnerBuilderBase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
index 186cd9d..38baca8 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/OnlyRecognizedTestClassBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders {
 	import org.flexunit.runner.IRunner;
 	import org.flexunit.runners.model.IRunnerBuilder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
index 0617c13..dbda90b 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/SuiteMethodBuilder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders {
 	import flex.lang.reflect.Klass;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
index eb28fd6..20d3e3a 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalDependencyResolver.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.dependency {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
index 33e3021..cec36fe 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/ExternalRunnerDependencyWatcher.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.dependency {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
index ba2cfcb..c0e1a38 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalDependencyResolver.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.dependency {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
index 08350e7..b257e4e 100644
--- a/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
+++ b/FlexUnit4/src/org/flexunit/internals/dependency/IExternalRunnerDependencyWatcher.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.dependency {
 	import org.flexunit.token.AsyncCoreStartupToken;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as b/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
index 6a77d7a..b35538e 100644
--- a/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
+++ b/FlexUnit4/src/org/flexunit/internals/events/ExecutionCompleteEvent.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.events
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as b/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
index 08c6a40..532f6ac 100644
--- a/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
+++ b/FlexUnit4/src/org/flexunit/internals/flexunit_internal.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals
 {
 /**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as b/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
index 50cacec..8fa6cef 100644
--- a/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
+++ b/FlexUnit4/src/org/flexunit/internals/listeners/FluintDisplayListener.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.listeners
 {
 	import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/matchers/Each.as b/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
index 98b7756..64113d7 100644
--- a/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
+++ b/FlexUnit4/src/org/flexunit/internals/matchers/Each.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.matchers
 {
 	import org.hamcrest.Matcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as b/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
index bbf36cb..349178f 100644
--- a/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
+++ b/FlexUnit4/src/org/flexunit/internals/namespaces/classInternal.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.namespaces
 {
 	public namespace classInternal = "http://www.adobe.com/2009/flexunit/classInternal";

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
index 5593fe6..0e78285 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/ClassRequest.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.requests {
 	import org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder;
 	import org.flexunit.internals.namespaces.classInternal;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
index f8080c4..bb78c7a 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/FilterRequest.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.requests {
 	import org.flexunit.internals.runners.ErrorReportingRunner;
 	import org.flexunit.runner.IRequest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
index 540952e..b2fd4e3 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/QualifyingRequest.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2010 Digital Primates
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.requests {
 	import org.flexunit.internals.builders.OnlyRecognizedTestClassBuilder;
 	import org.flexunit.runner.Request;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as b/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
index 68ba43c..29f4f47 100644
--- a/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
+++ b/FlexUnit4/src/org/flexunit/internals/requests/SortingRequest.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.requests
 {
 	import org.flexunit.runner.IRequest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as b/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
index c1a1bfd..bbc024a 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/ChildRunnerSequencer.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as b/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
index b757259..3dc3b78 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/ErrorReportingRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners {
 	import org.flexunit.runner.Description;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as b/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
index e7c0e16..dae1636 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/FlexUnit1ClassRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as b/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
index 9f7cf5e..92a0cc8 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/InitializationError.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as b/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
index 1b78ecb..695116f 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/SuiteMethod.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners {
 	import flex.lang.reflect.Klass;
 	import flex.lang.reflect.Method;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as b/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
index 83f08d6..c542114 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/model/EachTestNotifier.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.model {
 	import org.flexunit.runner.IDescription;
 	import org.flexunit.runner.notification.Failure;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as b/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
index abdb262..6a68863 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/model/IReflectiveCallable.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.model {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as b/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
index 1983d68..a7dc971 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/model/MultipleFailureException.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.model {
 	/**
 	 * The <code>MultipleFailureExecption</code> is used to store information on multiple errors

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as b/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
index f19906f..4aa34b9 100644
--- a/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
+++ b/FlexUnit4/src/org/flexunit/internals/runners/statements/AsyncStatementBase.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners.statements {
 	
 	import org.flexunit.token.AsyncTestToken;


[39/41] git commit: removed mockolate swc and added ant target in download.xml to automatically download those dependencies.

Posted by cz...@apache.org.
removed mockolate swc and added ant target in download.xml to automatically download those dependencies.


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/5b6e5f6d
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/5b6e5f6d
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/5b6e5f6d

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 5b6e5f6dedc21831dccb79d25c0aa67284bfaede
Parents: 8bb4de0
Author: cyrill.zadra <cy...@gmail.com>
Authored: Wed May 22 21:34:05 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Wed May 22 21:34:05 2013 +0800

----------------------------------------------------------------------
 FlexUnit4Test/downloads.xml            |   34 +++++++++++++++++++++++---
 FlexUnit4Test/libs/mockolate-0.9.5.swc |  Bin 125530 -> 0 bytes
 2 files changed, 30 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/5b6e5f6d/FlexUnit4Test/downloads.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/downloads.xml b/FlexUnit4Test/downloads.xml
index eb214d3..6dd2620 100644
--- a/FlexUnit4Test/downloads.xml
+++ b/FlexUnit4Test/downloads.xml
@@ -34,8 +34,9 @@
 	       
 	       Licenses:
 	       	fluint (1.2)  - MIT
-            flexunit1lib ()  - ?
-            hamcrest (1.1.3)  - 
+            flexunit1lib ()  - TODO license???
+            hamcrest (1.1.3)  -  TODO license???
+			mockolate (0.9.5) - TODO license???
 	-->
 		     
     <!-- 
@@ -43,7 +44,7 @@
         they are each downloaded only if they don't already exist. 
     -->
     
-	<target name="main" depends="prepare, flexunit1lib-swc, hamcrest-swc, fluint-swc"
+	<target name="main" depends="prepare, flexunit1lib-swc, hamcrest-swc, fluint-swc, mockolate-swc"
 		    description="Downloads all the required thirdparty SWCs"/>
 
     <target name="prepare" >
@@ -87,7 +88,7 @@
     </target>
 	
     <!--
-        Download a zip or gz file, extracts the jar file, and optionally copies the jar
+        Download a zip or gz file, extracts the jar/swc file, and optionally copies the jar/swc
         file to a different location and optinally verifies the checksum.  
         If the checksum fails, this script fails.
 
@@ -235,5 +236,30 @@
 	            <param name="destSwcFile" value="${lib.dir}/fluint-1_2.swc"/>
 	        </antcall>
 	    </target>
+		
+		<!--
+	        mockolate
+	    -->
+	    <target name="mockolate-swc-check" description="Checks if mockolate swc exists.">
+	    	<condition property="mockolate.swc.exists">
+	    	    <and>
+	    	        <available file="${lib.dir}/mockolate-0.9.5.swc"/>
+	    	    </and>
+	        </condition>
+	    </target>
+
+	    <target name="mockolate-swc" depends="mockolate-swc-check" 
+	        unless="mockolate.swc.exists" 
+	        description="Downloads and copies mockolate to the lib directory.">
+	        <echo message="Obtaining lib/mockolate-0.9.5.swc"/>
+	        <antcall target="download-zip">
+	          <param name="srcUrl" value="https://github.com/downloads/drewbourne/mockolate"/>
+	          <param name="zipFile" value="mockolate-0.9.5.zip"/>
+	          <param name="srcJarPath" value="mockolate-0.9.5/mockolate-0.9.5.swc"/>
+	          <param name="md5" value="b73fe1bb5f443993adcf8b274f6a48b2"/>
+	          <param name="destJarFile" value="${lib.dir}/mockolate-0.9.5.swc"/>
+	        </antcall>
+	        <delete dir="${download.dir}/temp/mockolate-0.9.5"/>
+	    </target>
 	
 </project>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/5b6e5f6d/FlexUnit4Test/libs/mockolate-0.9.5.swc
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/libs/mockolate-0.9.5.swc b/FlexUnit4Test/libs/mockolate-0.9.5.swc
deleted file mode 100644
index aa19cb2..0000000
Binary files a/FlexUnit4Test/libs/mockolate-0.9.5.swc and /dev/null differ


[16/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/CustomTypeSafeMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/CustomTypeSafeMatcherTest.as b/FlexUnit4Turnkey/src/org/hamcrest/CustomTypeSafeMatcherTest.as
index f19fcc7..407ec63 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/CustomTypeSafeMatcherTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/CustomTypeSafeMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/HamcrestMXMLSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/HamcrestMXMLSuite.as b/FlexUnit4Turnkey/src/org/hamcrest/HamcrestMXMLSuite.as
index ac6c33a..bbb2d34 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/HamcrestMXMLSuite.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/HamcrestMXMLSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 	import org.hamcrest.mxml.BaseMXMLMatcherTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/HamcrestSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/HamcrestSuite.as b/FlexUnit4Turnkey/src/org/hamcrest/HamcrestSuite.as
index 0b79a03..17974b2 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/HamcrestSuite.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/HamcrestSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
     import org.hamcrest.collection.EveryTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/MatcherAssertTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/MatcherAssertTest.as b/FlexUnit4Turnkey/src/org/hamcrest/MatcherAssertTest.as
index 599e0bb..36f0b4b 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/MatcherAssertTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/MatcherAssertTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/TypeSafeMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/TypeSafeMatcherTest.as b/FlexUnit4Turnkey/src/org/hamcrest/TypeSafeMatcherTest.as
index 57f5742..72f6efa 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/TypeSafeMatcherTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/TypeSafeMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
index 44114ce..ec6f3aa 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/AbstractArrayMatcherTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/EveryTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/EveryTest.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/EveryTest.as
index 2f4e4aa..5d13a28 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/EveryTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/EveryTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/InArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/InArrayTest.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/InArrayTest.as
index 0f910b2..6e50073 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/InArrayTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/InArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
 	public class InArrayTest extends AbstractArrayMatcherTestCase

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayContainingTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayContainingTest.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayContainingTest.as
index eff7b02..f86803f 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayContainingTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayContainingTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayTest.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayTest.as
index 2e44aec..453d327 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import org.hamcrest.object.equalTo;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayWithSizeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayWithSizeTest.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayWithSizeTest.as
index 6fd2d6f..ed7ad66 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayWithSizeTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/IsArrayWithSizeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByFieldsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByFieldsTest.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByFieldsTest.as
index 96c1d1a..253c657 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByFieldsTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByFieldsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
     import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByTest.as b/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByTest.as
index abf1f8e..a72e8ea 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/collection/SortedByTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.collection
 {
 	import mx.collections.ArrayCollection;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/AllOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/AllOfTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/AllOfTest.as
index 061524e..da67db5 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/AllOfTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/AllOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/AnyOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/AnyOfTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/AnyOfTest.as
index 6d8b65e..8302746 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/AnyOfTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/AnyOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/CombinableTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/CombinableTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/CombinableTest.as
index afab031..c40a3ac 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/CombinableTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/CombinableTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/DescribedAsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/DescribedAsTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/DescribedAsTest.as
index 6ed837e..0b0f789 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/DescribedAsTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/DescribedAsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/EvaluateTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/EvaluateTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/EvaluateTest.as
index 9c72759..3ac02fd 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/EvaluateTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/EvaluateTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 	import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/GivenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/GivenTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/GivenTest.as
index a1e8004..67569bc 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/GivenTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/GivenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 	import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/IsAnythingTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/IsAnythingTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/IsAnythingTest.as
index 5ba71ad..807c72e 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/IsAnythingTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/IsAnythingTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/IsNotTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/IsNotTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/IsNotTest.as
index 03bb4f4..c5fd6cc 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/IsNotTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/IsNotTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/core/ThrowsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/core/ThrowsTest.as b/FlexUnit4Turnkey/src/org/hamcrest/core/ThrowsTest.as
index 0b8256f..64195fd 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/core/ThrowsTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/core/ThrowsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.core
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/date/DateAfterTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/date/DateAfterTest.as b/FlexUnit4Turnkey/src/org/hamcrest/date/DateAfterTest.as
index 38e97e1..6051ca1 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/date/DateAfterTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/date/DateAfterTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/date/DateBeforeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/date/DateBeforeTest.as b/FlexUnit4Turnkey/src/org/hamcrest/date/DateBeforeTest.as
index d070bdc..6e212d3 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/date/DateBeforeTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/date/DateBeforeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/date/DateBetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/date/DateBetweenTest.as b/FlexUnit4Turnkey/src/org/hamcrest/date/DateBetweenTest.as
index 0fccdf7..1e017e7 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/date/DateBetweenTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/date/DateBetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/date/DateEqualTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/date/DateEqualTest.as b/FlexUnit4Turnkey/src/org/hamcrest/date/DateEqualTest.as
index 0a88a2e..d316c19 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/date/DateEqualTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/date/DateEqualTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.date
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/filter/FilterFunctionTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/filter/FilterFunctionTest.as b/FlexUnit4Turnkey/src/org/hamcrest/filter/FilterFunctionTest.as
index 6ed0078..d72a915 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/filter/FilterFunctionTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/filter/FilterFunctionTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.filter
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
index b063b76..8acc0a2 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/AbstractMXMLMatcherTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
     import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
index 9e0a740..74ebfef 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherCompositeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
index 97601c4..65d1e6f 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherContainerTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
index 55064fc..e5301f5 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/BaseMXMLMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayTest.as
index 00b2dd9..7018f5b 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.flexunit.assertThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
index 434fe07..028b5a5 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/ArrayWithSizeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EmptyArrayTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
index b90a6f2..69c7546 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EmptyArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EveryItemTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EveryItemTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EveryItemTest.as
index 22712af..cc630e0 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EveryItemTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/EveryItemTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemTest.as
index e04c01a..03cf44d 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemsTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemsTest.as
index 59be2fc..856d4c9 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemsTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/HasItemsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/InArrayTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/InArrayTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/InArrayTest.as
index 0be48ce..24701fa 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/InArrayTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/collection/InArrayTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.collection
 {
 	import org.hamcrest.collection.InArrayMatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AllOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AllOfTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AllOfTest.as
index be9fe6a..2372c6b 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AllOfTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AllOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnyOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnyOfTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnyOfTest.as
index be4cbc7..4c085cb 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnyOfTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnyOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnythingTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnythingTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnythingTest.as
index 8cd311d..80df524 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnythingTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/AnythingTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
index db6999e..7eacd91 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/BaseMXMLMatcherTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.BaseMXMLMatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/DescribedAsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/DescribedAsTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/DescribedAsTest.as
index 018a867..8c3c78e 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/DescribedAsTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/DescribedAsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
index be7ad4a..19c72c6 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/HamcrestMxmlExample.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Canvas 
     height="300"
     width="400"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/NotTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/NotTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/NotTest.as
index 5818285..63b65c6 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/NotTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/core/NotTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.core
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateAfterTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateAfterTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateAfterTest.as
index c3a3373..97ac157 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateAfterTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateAfterTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBeforeTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBeforeTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBeforeTest.as
index 2257269..5cd7346 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBeforeTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBeforeTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBetweenTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBetweenTest.as
index 78e1683..f93afba 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBetweenTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateBetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateEqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateEqualToTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateEqualToTest.as
index 2db7fdc..4703bbe 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateEqualToTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/date/DateEqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.date
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/BetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/BetweenTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/BetweenTest.as
index 0669e3e..f35b41b 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/BetweenTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/BetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/CloseToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/CloseToTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/CloseToTest.as
index a2a66fa..9aa81fe 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/CloseToTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/CloseToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
index 92080c2..8543fd8 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanOrEqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanTest.as
index f4a6ee8..a7b2203 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/GreaterThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
index 836b570..eae9e07 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanOrEqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanTest.as
index 070e2f8..16d9e2a 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/number/LessThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.number
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/EqualToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/EqualToTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/EqualToTest.as
index 4fbbeed..cf89462 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/EqualToTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/EqualToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyChainTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
index 584b04c..3af7618 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyChainTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyTest.as
index cfdaab8..60c45b4 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
index d11eb7e..a9864c0 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/HasPropertyWithValueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/InstanceOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/InstanceOfTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/InstanceOfTest.as
index ab028f4..776857a 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/InstanceOfTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/InstanceOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsFalseTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsFalseTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsFalseTest.as
index 12e1429..b34660b 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsFalseTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsFalseTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
   import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsTrueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsTrueTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsTrueTest.as
index 94efb3e..07e757a 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsTrueTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/IsTrueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
   import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NotNullTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NotNullTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NotNullTest.as
index 6e7c7ba..cb81aff 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NotNullTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NotNullTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;


[29/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
index a2f4761..a6a87a6 100644
--- a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
+++ b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataArgument.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.metadata {
 
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as b/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
index 1c036a7..8ca341c 100644
--- a/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
+++ b/FlexUnit4/src/flex/lang/reflect/utils/MetadataTools.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.utils
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/locale/en_US/metadata.properties
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/locale/en_US/metadata.properties b/FlexUnit4/src/locale/en_US/metadata.properties
index 756231f..a907af3 100644
--- a/FlexUnit4/src/locale/en_US/metadata.properties
+++ b/FlexUnit4/src/locale/en_US/metadata.properties
@@ -1,3 +1,18 @@
+# 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.
+
 flexunit.test = Annotates a method as a FlexUnit 4 test.
 flexunit.runwith = Used to specify a custom runner for a FlexUnit 4 test case. Custom runners must implement the IRunner interface.
 flexunit.suite = Annotates a class as a FlexUnit 4 suite. This class also needs to be decorated with the [RunWith(org.flexunit.runners.Suite")] metadata.

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/metadata.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/metadata.xml b/FlexUnit4/src/metadata.xml
index f8b17b8..f1aa42c 100644
--- a/FlexUnit4/src/metadata.xml
+++ b/FlexUnit4/src/metadata.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8" ?>
+<!--
+  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.
+-->
 <annotations version="1.0">
 	<metadata name="Test" description="%flexunit.test">
   		<context name="method" /> 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/Assert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/Assert.as b/FlexUnit4/src/org/flexunit/Assert.as
index 9e336e8..20090f4 100644
--- a/FlexUnit4/src/org/flexunit/Assert.as
+++ b/FlexUnit4/src/org/flexunit/Assert.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/AssertionError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/AssertionError.as b/FlexUnit4/src/org/flexunit/AssertionError.as
index 7bd44ed..fb4ab16 100644
--- a/FlexUnit4/src/org/flexunit/AssertionError.as
+++ b/FlexUnit4/src/org/flexunit/AssertionError.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/Assume.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/Assume.as b/FlexUnit4/src/org/flexunit/Assume.as
index 65dea1e..0303b28 100644
--- a/FlexUnit4/src/org/flexunit/Assume.as
+++ b/FlexUnit4/src/org/flexunit/Assume.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit
 {
 	import org.flexunit.internals.AssumptionViolatedException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as b/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
index 9254814..ea85d55 100644
--- a/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
+++ b/FlexUnit4/src/org/flexunit/IncludeFlexClasses.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit
 {
 	import org.flexunit.async.AsyncTestResponder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/assertThat.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/assertThat.as b/FlexUnit4/src/org/flexunit/assertThat.as
index 23167c2..d2af640 100644
--- a/FlexUnit4/src/org/flexunit/assertThat.as
+++ b/FlexUnit4/src/org/flexunit/assertThat.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit
 {
 	import org.hamcrest.assertThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertEquals.as b/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
index 4a1346a..7a6e03d 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertEquals.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertFalse.as b/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
index 4a2f6ed..301a8ec 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertFalse.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as b/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
index e047c41..4341d64 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertNotNull.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/asserts/assertNull.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertNull.as b/FlexUnit4/src/org/flexunit/asserts/assertNull.as
index ea53c6b..143e699 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertNull.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertNull.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as b/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
index 5b26961..49acf25 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertStrictlyEquals.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.asserts
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/assertTrue.as b/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
index d78abc8..cd04275 100644
--- a/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
+++ b/FlexUnit4/src/org/flexunit/asserts/assertTrue.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/asserts/fail.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/asserts/fail.as b/FlexUnit4/src/org/flexunit/asserts/fail.as
index c38949d..0c2a59e 100644
--- a/FlexUnit4/src/org/flexunit/asserts/fail.as
+++ b/FlexUnit4/src/org/flexunit/asserts/fail.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.asserts {
 	import org.flexunit.Assert;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/assumeThat.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/assumeThat.as b/FlexUnit4/src/org/flexunit/assumeThat.as
index 8f3cba8..c2be95b 100644
--- a/FlexUnit4/src/org/flexunit/assumeThat.as
+++ b/FlexUnit4/src/org/flexunit/assumeThat.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit
 {
 	import org.hamcrest.Matcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/Async.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/Async.as b/FlexUnit4/src/org/flexunit/async/Async.as
index f58995f..b42b2be 100644
--- a/FlexUnit4/src/org/flexunit/async/Async.as
+++ b/FlexUnit4/src/org/flexunit/async/Async.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncHandler.as b/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
index 601e24d..36bbf87 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncHandler.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncLocator.as b/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
index 64568fa..4466366 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncLocator.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as b/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
index c1cc609..47ac6db 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncNativeTestResponder.as
@@ -1,4 +1,20 @@
-/package org.flexunit.async {
+/*
+ * 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 org.flexunit.async {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as b/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
index 1b2c689..105f8a4 100644
--- a/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/AsyncTestResponder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async {
 	import flash.events.EventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as b/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
index 397d2d2..8cf6e12 100644
--- a/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/IAsyncTestResponder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/ITestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/ITestResponder.as b/FlexUnit4/src/org/flexunit/async/ITestResponder.as
index 98b5502..43d01ce 100644
--- a/FlexUnit4/src/org/flexunit/async/ITestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/ITestResponder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async {
 	/**
 	 * An <code>ITestResponder</code> is an interface for to be implemented by classes that want to handle the results

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/async/TestResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/async/TestResponder.as b/FlexUnit4/src/org/flexunit/async/TestResponder.as
index efe6edc..663bd1c 100644
--- a/FlexUnit4/src/org/flexunit/async/TestResponder.as
+++ b/FlexUnit4/src/org/flexunit/async/TestResponder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.async {
 	/**
 	 * A respoder for tests that contains <code>Function</code>s for the test succeeding or the test 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as b/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
index a3ce6a0..d66b1af 100644
--- a/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
+++ b/FlexUnit4/src/org/flexunit/constants/AnnotationArgumentConstants.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.constants {
 	public class AnnotationArgumentConstants {
 		/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as b/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
index 538b211..a043f84 100644
--- a/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
+++ b/FlexUnit4/src/org/flexunit/constants/AnnotationConstants.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.constants {
 	public class AnnotationConstants {
 		/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/AsyncEvent.as b/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
index 2ef0cbf..0bbc9b1 100644
--- a/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
+++ b/FlexUnit4/src/org/flexunit/events/AsyncEvent.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events {
 	import flash.events.Event;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as b/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
index 8e4b3ba..234b816 100644
--- a/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
+++ b/FlexUnit4/src/org/flexunit/events/AsyncResponseEvent.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/UnknownError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/UnknownError.as b/FlexUnit4/src/org/flexunit/events/UnknownError.as
index 2aca2c4..c2a8cbc 100644
--- a/FlexUnit4/src/org/flexunit/events/UnknownError.as
+++ b/FlexUnit4/src/org/flexunit/events/UnknownError.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events
 {
 	import flash.events.ErrorEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as b/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
index d982550..0fed4b2 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/EventExpectations.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/rule/EventRule.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/EventRule.as b/FlexUnit4/src/org/flexunit/events/rule/EventRule.as
index abb2865..12b50fa 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/EventRule.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/EventRule.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/rule/ExpectationEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/ExpectationEvent.as b/FlexUnit4/src/org/flexunit/events/rule/ExpectationEvent.as
index 0a6fbb3..2831ddb 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/ExpectationEvent.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/ExpectationEvent.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/rule/IEventExpectation.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/IEventExpectation.as b/FlexUnit4/src/org/flexunit/events/rule/IEventExpectation.as
index 1fdce48..6ea43d0 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/IEventExpectation.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/IEventExpectation.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule {
 	public interface IEventExpectation {
 		function never():IEventExpectation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/rule/MultiMatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/MultiMatcher.as b/FlexUnit4/src/org/flexunit/events/rule/MultiMatcher.as
index b76aa58..17a65ae 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/MultiMatcher.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/MultiMatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule {
 	import org.hamcrest.BaseMatcher;
 	import org.hamcrest.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/rule/QuantityMatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/QuantityMatcher.as b/FlexUnit4/src/org/flexunit/events/rule/QuantityMatcher.as
index 271088c..5be11d0 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/QuantityMatcher.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/QuantityMatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule {
 	import org.hamcrest.BaseMatcher;
 	import org.hamcrest.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/events/rule/TimeoutMonitor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/events/rule/TimeoutMonitor.as b/FlexUnit4/src/org/flexunit/events/rule/TimeoutMonitor.as
index 73e9ff6..9147ac0 100644
--- a/FlexUnit4/src/org/flexunit/events/rule/TimeoutMonitor.as
+++ b/FlexUnit4/src/org/flexunit/events/rule/TimeoutMonitor.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.events.rule {
 	import flash.events.Event;
 	import flash.events.EventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
index c82cc88..299ec1e 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/AssignmentSequencer.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements {
 	import org.flexunit.experimental.theories.IPotentialAssignment;
 	import org.flexunit.experimental.theories.internals.Assignments;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
index 7db33ab..bc97c90 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/MethodCompleteWithParamsStatement.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements {
 	import org.flexunit.experimental.theories.internals.Assignments;
 	import org.flexunit.experimental.theories.internals.error.CouldNotGenerateValueException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
index 48467c6..f6ac924 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryAnchor.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
index 842eda4..4bfa1c7 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements {
 	import flex.lang.reflect.Klass;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
index bb76ec7..64ac79f 100644
--- a/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
+++ b/FlexUnit4/src/org/flexunit/experimental/runners/statements/TheoryBlockRunnerStatement.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.runners.statements
 {
 	import org.flexunit.experimental.theories.internals.Assignments;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as b/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
index af94566..58d3dfd 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/IParameterSupplier.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as b/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
index aa4b2d9..b6820da 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/IPotentialAssignment.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories {
 	/**
 	 * The <code>IPotentialAssignment</code> interface is used by classes that want to store poential values that will

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as b/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
index edf3663..97680e3 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/ParameterSignature.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories {
 	import flex.lang.reflect.Constructor;
 	import flex.lang.reflect.Field;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as b/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
index 517fe78..489ca0c 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/PotentialAssignment.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as b/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
index b8710e6..5acd15e 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/Theories.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories {
 	import flex.lang.reflect.Field;
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
index 5adb911..f23fc9f 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/AllMembersSupplier.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals
 {
 	import flex.lang.reflect.Field;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
index f98c85b..858533d 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/Assignments.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals {
 	import flex.lang.reflect.Constructor;
 	import flex.lang.reflect.Method;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
index 81b80e6..cb43732 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/ParameterizedAssertionError.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals {
 	import org.flexunit.AssertionError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as b/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
index 2af1e20..d607d7c 100644
--- a/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
+++ b/FlexUnit4/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueException.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals.error
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as b/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
index 15362f4..d100428 100644
--- a/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
+++ b/FlexUnit4/src/org/flexunit/internals/AssumptionViolatedException.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals
 {
 	import org.hamcrest.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/TextListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/TextListener.as b/FlexUnit4/src/org/flexunit/internals/TextListener.as
index 9f878a6..46cd0f4 100644
--- a/FlexUnit4/src/org/flexunit/internals/TextListener.as
+++ b/FlexUnit4/src/org/flexunit/internals/TextListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals {
 	import mx.formatters.NumberFormatter;
 	import mx.logging.ILogger;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/TraceListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/TraceListener.as b/FlexUnit4/src/org/flexunit/internals/TraceListener.as
index 7c4d694..9dd9cb1 100644
--- a/FlexUnit4/src/org/flexunit/internals/TraceListener.as
+++ b/FlexUnit4/src/org/flexunit/internals/TraceListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals {
 	import org.flexunit.reporting.FailureFormatter;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
index 1bf36b7..45ffdf7 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/AllDefaultPossibilitiesBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders {
 	import flash.utils.getDefinitionByName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
index d91559d..ab949d5 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit1Builder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
index f860aec..2da6d4c 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4Builder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders
 {
 	import org.flexunit.runner.IRunner;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
index 6f7705c..8e81e81 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/FlexUnit4QualifiedBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
index 6fa9dbe..bbab749 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
index ef6cb43..0aab637 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/IgnoredClassRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders {
 	import org.flexunit.runner.Description;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
index 86cf1a2..110190f 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/MetaDataBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders {
 	import flash.utils.getDefinitionByName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as b/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
index 62716ae..49d0cb2 100644
--- a/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
+++ b/FlexUnit4/src/org/flexunit/internals/builders/NullBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders
 {
 	import org.flexunit.runners.model.RunnerBuilderBase;


[11/41] git commit: added more directories and files to exclude in ant task rat-report

Posted by cz...@apache.org.
added more directories and files to exclude in ant task rat-report


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/23fe1a14
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/23fe1a14
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/23fe1a14

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 23fe1a14deb8d19cd788760423e5af43211b3346
Parents: 0f812e3
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat May 18 12:30:42 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat May 18 12:30:42 2013 +0800

----------------------------------------------------------------------
 build.xml |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/23fe1a14/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 925caea..2ebe59c 100644
--- a/build.xml
+++ b/build.xml
@@ -309,11 +309,16 @@ to contribute to our CI process.
         <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
             reportFile="${basedir}/rat.report">
             <fileset dir="${rat.dir}">
+				<!-- rat.report file -->
+				<exclude name="rat.report"/>
+				<!-- git files -->
+                <exclude name="**/.git/"/>
+				<exclude name="**/.gitignore"/>
                 <!-- generated source files that don't have Apache v2 license header -->
                 <exclude name="**/build.number"/>
                 <exclude name="**/.actionScriptProperties"/>
                 <exclude name="**/.flexProperties"/>
-				        <exclude name="**/.flexLibProperties"/>
+				<exclude name="**/.flexLibProperties"/>
                 <exclude name="**/.project"/>
                 <exclude name="**/.fxpProperties"/>
                 <exclude name="**/.settings/**"/>
@@ -327,6 +332,10 @@ to contribute to our CI process.
                 <!-- exclude fonts -->
                 <exclude name="**/*.ttf"/>
                 <!--          End of binary files           -->
+				<!--Exclude generated doc -->
+				<exclude name="FlexUnit4/docs/"/>
+				<exclude name="FlexUnit4UIListener/target/docs/"/>
+				
             </fileset>
         </rat:report>
 


[27/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
index 44cb00f..421173c 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/IFixtureSorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation {
 	import org.flexunit.runner.IDescription;
 	import org.flexunit.runner.manipulation.sortingInheritance.ISortingInheritanceCache;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
index 843aa79..a02ac73 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISimpleCursor.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
index c55458e..b99c783 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISort.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
index ad93626..4aad9c9 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISortable.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
index d4f565c..8d84ab4 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/ISorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation {
 	import org.flexunit.runner.IDescription;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as b/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
index 792e916..8917eb4 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/NoTestsRemainException.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
index e4611e0..b0ce4ea 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusAlphaSorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.metadata.MetaDataArgument;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
index 9459105..4b13fae 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentPlusInheritanceSorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
index 347b743..9168c99 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/OrderArgumentSorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.metadata.MetaDataArgument;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
index 843ab51..b3ca510 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/Sorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation
 {
 	import org.flexunit.runner.Description;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
index 49bc8c4..ac982e1 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/fields/FieldMetaDataSorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 
 //This class is highly duplicated from OrderArgumentSorter and we should abstract common functionality
 package org.flexunit.runner.manipulation.fields {

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/fields/IFieldSorter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/fields/IFieldSorter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/fields/IFieldSorter.as
index b0605c3..5ee0b76 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/fields/IFieldSorter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/fields/IFieldSorter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.fields {
 	import flex.lang.reflect.Field;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/filters/AbstractFilter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/AbstractFilter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/AbstractFilter.as
index db2a33b..cae7bc1 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/AbstractFilter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/AbstractFilter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.filters {
 	import org.flexunit.runner.IDescription;
 	import org.flexunit.runner.manipulation.IFilter;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
index 0ee6481..391411a 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/DynamicFilter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.filters {
 	import org.flexunit.runner.IDescription;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/filters/IncludeAllFilter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/IncludeAllFilter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/IncludeAllFilter.as
index f3c891d..f174866 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/IncludeAllFilter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/IncludeAllFilter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.filters
 {
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/filters/MethodNameFilter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/MethodNameFilter.as b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/MethodNameFilter.as
index 34ef430..c4b9bcb 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/filters/MethodNameFilter.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/filters/MethodNameFilter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.filters {
 	import org.flexunit.runner.IDescription;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
index 6c6cee7..aa76ea8 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ClassInheritanceOrderCache.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.sortingInheritance {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
index 7a43688..9b960c7 100644
--- a/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
+++ b/FlexUnit4/src/org/flexunit/runner/manipulation/sortingInheritance/ISortingInheritanceCache.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.manipulation.sortingInheritance {
 	import org.flexunit.runner.IDescription;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/Failure.as b/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
index a3296a5..13013a6 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/Failure.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification {
 	import flash.system.Capabilities;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
index c8a9857..c0cb398 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncCompletionRunListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
index 2323a5c..063640e 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncRunListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
index 02fd274..67bbef5 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IAsyncStartupRunListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
index 6a9edf2..4badccf 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IRunListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification
 {
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as b/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
index 00a502a..ee7bd93 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/IRunNotifier.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification {
 	import org.flexunit.runner.IDescription;
 	import org.flexunit.runner.Result;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/ITemporalRunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/ITemporalRunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/ITemporalRunListener.as
index 995f854..0f47efe 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/ITemporalRunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/ITemporalRunListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification {
 	import org.flexunit.runner.IDescription;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as b/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
index db618fa..19a9f9d 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/RunListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification {
 	import org.flexunit.runner.Description;
 	import org.flexunit.runner.IDescription;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as b/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
index 9785908..30ec11a 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/RunNotifier.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as b/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
index b3895e8..966eb02 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/StoppedByUserException.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as b/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
index 8b41edc..af30250 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/async/AsyncListenerWatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.async {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as b/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
index 46f50b8..82a36f8 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/async/WaitingListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 /**
  * notes
  * 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as b/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
index 5b098b1..fee5701 100644
--- a/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
+++ b/FlexUnit4/src/org/flexunit/runner/notification/async/XMLListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runner.notification.async
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as b/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
index e691a67..7a3063c 100644
--- a/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
+++ b/FlexUnit4/src/org/flexunit/runners/BlockFlexUnit4ClassRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners {
 	import flash.utils.getQualifiedClassName;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/Parameterized.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/Parameterized.as b/FlexUnit4/src/org/flexunit/runners/Parameterized.as
index 2320f76..c7e7e2a 100644
--- a/FlexUnit4/src/org/flexunit/runners/Parameterized.as
+++ b/FlexUnit4/src/org/flexunit/runners/Parameterized.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners
 {	
 	import flex.lang.reflect.Field;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/ParentRunner.as b/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
index 50d21fd..064eb25 100644
--- a/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
+++ b/FlexUnit4/src/org/flexunit/runners/ParentRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners {
 	import org.flexunit.constants.AnnotationConstants;
 	import org.flexunit.internals.AssumptionViolatedException;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/Suite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/Suite.as b/FlexUnit4/src/org/flexunit/runners/Suite.as
index d4bebe5..e681cf0 100644
--- a/FlexUnit4/src/org/flexunit/runners/Suite.as
+++ b/FlexUnit4/src/org/flexunit/runners/Suite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners {
 	import flex.lang.reflect.Klass;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as b/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
index a8191ad..56b39d2 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/FrameworkMethod.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model {
 	import flex.lang.reflect.Method;
 	import flex.lang.reflect.metadata.MetaDataAnnotation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as b/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
index 7d7ee60..a103401 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/IRunnerBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model {
 	import org.flexunit.runner.IRunner;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/IStatement.as b/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
index a6cba86..1de2ea0 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/IStatement.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/model/ParameterizedMethod.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/ParameterizedMethod.as b/FlexUnit4/src/org/flexunit/runners/model/ParameterizedMethod.as
index 81f2b23..93046be 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/ParameterizedMethod.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/ParameterizedMethod.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model {
 	import flex.lang.reflect.Method;
 	import flex.lang.reflect.metadata.MetaDataAnnotation;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as b/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
index 30fde19..dd007e0 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/RunnerBuilderBase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/runners/model/TestClass.as b/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
index f6d4acb..01bb390 100644
--- a/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
+++ b/FlexUnit4/src/org/flexunit/runners/model/TestClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.runners.model {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as b/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
index 65be951..5dcd3e6 100644
--- a/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
+++ b/FlexUnit4/src/org/flexunit/token/AsyncCoreStartupToken.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token {
 	import org.flexunit.runner.IRunner;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as b/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
index b69ff65..3c2a0c0 100644
--- a/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
+++ b/FlexUnit4/src/org/flexunit/token/AsyncTestToken.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/token/ChildResult.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/ChildResult.as b/FlexUnit4/src/org/flexunit/token/ChildResult.as
index d8734f0..91e482d 100644
--- a/FlexUnit4/src/org/flexunit/token/ChildResult.as
+++ b/FlexUnit4/src/org/flexunit/token/ChildResult.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token {
 	/**
 	 * The <code>ChildResult</code> stores an <code>AsyncTestToken</code> and a potential <code>Error</code> 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as b/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
index 3112855..f3585dc 100644
--- a/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
+++ b/FlexUnit4/src/org/flexunit/token/IAsyncTestToken.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.token {
 	/**
 	 * Interface describing viable tokens to be passed between test stages

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as b/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
index 7c6323d..e318bc3 100644
--- a/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
+++ b/FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.utils {
 	/**
 	 * The <code>ClassNameUtil</code> is responsible for assisting in the formatting of class names.

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as b/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
index a9af1e7..da6dc9a 100644
--- a/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
+++ b/FlexUnit4/src/org/flexunit/utils/DescriptionUtil.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.utils {
 	import org.flexunit.runner.IDescription;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as b/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
index 1fe6e11..5779478 100644
--- a/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
+++ b/FlexUnit4/src/org/fluint/sequence/ISequenceAction.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/ISequencePend.as b/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
index a3bd454..9ac9b1a 100644
--- a/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
+++ b/FlexUnit4/src/org/fluint/sequence/ISequencePend.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 	
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as b/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
index 47dff6f..1934617 100644
--- a/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
+++ b/FlexUnit4/src/org/fluint/sequence/ISequenceStep.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as b/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
index fcf6fd1..0f1f060 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceBindingWaiter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as b/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
index b6fc69f..3a6f382 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceCaller.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence
 {
 	import flash.events.IEventDispatcher;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as b/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
index b230fd3..c1a8673 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceDelay.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as b/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
index d5b9fd6..2c9e472 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceEventDispatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as b/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
index ad63bb4..e5a80ff 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 	import flash.events.Event;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as b/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
index 34340cf..df68c70 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceSetter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as b/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
index d7d62a9..0caa8a6 100644
--- a/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
+++ b/FlexUnit4/src/org/fluint/sequence/SequenceWaiter.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.sequence {
 	import flash.events.IEventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
index 7c80146..bd2e45f 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualEnvironmentBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation {
 	/**
 	 * 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
index 52a5b56..bd59356 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/IVisualTestEnvironment.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation
 {
 	import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as b/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
index 78a248a..0adbe8c 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/UIImpersonator.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation
 {

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
index 88c4d20..071b69f 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironment.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation
 {
 	import flash.display.DisplayObject;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
index 648deb9..4d97b81 100644
--- a/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
+++ b/FlexUnit4/src/org/fluint/uiImpersonation/VisualTestEnvironmentBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.fluint.uiImpersonation {
 	import flash.display.DisplayObject;
 	import flash.display.DisplayObjectContainer;


[38/41] git commit: updated gitignore - ignore libs folder

Posted by cz...@apache.org.
updated gitignore - ignore libs folder


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/8bb4de08
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/8bb4de08
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/8bb4de08

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 8bb4de08ec8c2bad0b117e2a14c98955dc73e19a
Parents: 26f66a9
Author: cyrill.zadra <cy...@gmail.com>
Authored: Wed May 22 00:25:46 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Wed May 22 00:25:46 2013 +0800

----------------------------------------------------------------------
 FlexUnit4UIListener/.gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/8bb4de08/FlexUnit4UIListener/.gitignore
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/.gitignore b/FlexUnit4UIListener/.gitignore
new file mode 100644
index 0000000..25f7406
--- /dev/null
+++ b/FlexUnit4UIListener/.gitignore
@@ -0,0 +1 @@
+/libs/


[15/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NullTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NullTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NullTest.as
index 6425a41..e769edc 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NullTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/NullTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import org.hamcrest.mxml.AbstractMXMLMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/SameInstanceTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/SameInstanceTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/SameInstanceTest.as
index b618df9..05ba61c 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/SameInstanceTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/object/SameInstanceTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.object
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/ContainsStringTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/ContainsStringTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/ContainsStringTest.as
index 53f7663..b0f9d26 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/ContainsStringTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/ContainsStringTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EmptyStringTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EmptyStringTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EmptyStringTest.as
index d6a5d73..12c671c 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EmptyStringTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EmptyStringTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EndsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EndsWithTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EndsWithTest.as
index 35fc550..0a35a3b 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EndsWithTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/EndsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/StartsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/StartsWithTest.as b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/StartsWithTest.as
index 1fa13f2..b99263f 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/StartsWithTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/mxml/text/StartsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.mxml.text
 {
     import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/number/BetweenTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/number/BetweenTest.as b/FlexUnit4Turnkey/src/org/hamcrest/number/BetweenTest.as
index 4a2e2ee..903d28a 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/number/BetweenTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/number/BetweenTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/number/CloseToTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/number/CloseToTest.as b/FlexUnit4Turnkey/src/org/hamcrest/number/CloseToTest.as
index 2de8080..e3aded2 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/number/CloseToTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/number/CloseToTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
     import org.flexunit.assertThat;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/number/GreaterThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/number/GreaterThanTest.as b/FlexUnit4Turnkey/src/org/hamcrest/number/GreaterThanTest.as
index d342d77..bd1b87e 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/number/GreaterThanTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/number/GreaterThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/number/IsNotANumberTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/number/IsNotANumberTest.as b/FlexUnit4Turnkey/src/org/hamcrest/number/IsNotANumberTest.as
index eb65703..0d36974 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/number/IsNotANumberTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/number/IsNotANumberTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 	import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/number/IsNumberTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/number/IsNumberTest.as b/FlexUnit4Turnkey/src/org/hamcrest/number/IsNumberTest.as
index 7bac17c..872309c 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/number/IsNumberTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/number/IsNumberTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 	import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/number/LessThanTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/number/LessThanTest.as b/FlexUnit4Turnkey/src/org/hamcrest/number/LessThanTest.as
index d18be05..8f2f94b 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/number/LessThanTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/number/LessThanTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.number
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertiesTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertiesTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertiesTest.as
index 670e61b..c81da1c 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertiesTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertiesTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyChainTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyChainTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyChainTest.as
index 14a3561..c4ed3e2 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyChainTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyChainTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyTest.as
index d134243..6d7f731 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyWithValueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyWithValueTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyWithValueTest.as
index b8936d0..607cbf1 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyWithValueTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/HasPropertyWithValueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/IsEqualTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/IsEqualTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/IsEqualTest.as
index a5a5e99..1cf4cc3 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/IsEqualTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/IsEqualTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/IsFalseTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/IsFalseTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/IsFalseTest.as
index 674a582..d54a2c3 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/IsFalseTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/IsFalseTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
   import org.hamcrest.MatcherAssertTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/IsInstanceOfTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/IsInstanceOfTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/IsInstanceOfTest.as
index 7b5406c..400c0fe 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/IsInstanceOfTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/IsInstanceOfTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/IsNullTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/IsNullTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/IsNullTest.as
index 53fc5ab..ea4eb20 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/IsNullTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/IsNullTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/IsSameTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/IsSameTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/IsSameTest.as
index 4e00ff5..baa60a7 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/IsSameTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/IsSameTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/IsStrictlyEqualTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/IsStrictlyEqualTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/IsStrictlyEqualTest.as
index bef50f9..3683ff2 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/IsStrictlyEqualTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/IsStrictlyEqualTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
     

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/object/IsTrueTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/object/IsTrueTest.as b/FlexUnit4Turnkey/src/org/hamcrest/object/IsTrueTest.as
index 89cc45f..b8f3fb3 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/object/IsTrueTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/object/IsTrueTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.object
 {
   import org.hamcrest.MatcherAssertTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/text/EmptyStringTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/text/EmptyStringTest.as b/FlexUnit4Turnkey/src/org/hamcrest/text/EmptyStringTest.as
index 3964212..3ba1307 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/text/EmptyStringTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/text/EmptyStringTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.AbstractMatcherTestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/text/StringContainsTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/text/StringContainsTest.as b/FlexUnit4Turnkey/src/org/hamcrest/text/StringContainsTest.as
index 66896e6..427a167 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/text/StringContainsTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/text/StringContainsTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/text/StringEndsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/text/StringEndsWithTest.as b/FlexUnit4Turnkey/src/org/hamcrest/text/StringEndsWithTest.as
index 6383a78..2576602 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/text/StringEndsWithTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/text/StringEndsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/text/StringStartsWithTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/text/StringStartsWithTest.as b/FlexUnit4Turnkey/src/org/hamcrest/text/StringStartsWithTest.as
index b27d966..148c261 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/text/StringStartsWithTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/text/StringStartsWithTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.text
 {
     import org.hamcrest.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/org/hamcrest/validation/MatcherValidatorTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/org/hamcrest/validation/MatcherValidatorTest.as b/FlexUnit4Turnkey/src/org/hamcrest/validation/MatcherValidatorTest.as
index e12c6b6..d781517 100644
--- a/FlexUnit4Turnkey/src/org/hamcrest/validation/MatcherValidatorTest.as
+++ b/FlexUnit4Turnkey/src/org/hamcrest/validation/MatcherValidatorTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.hamcrest.validation
 {
     import mx.events.ValidationResultEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/suite/FlexUnitIn360.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/suite/FlexUnitIn360.as b/FlexUnit4Turnkey/src/suite/FlexUnitIn360.as
index 6f340f8..5f8a066 100644
--- a/FlexUnit4Turnkey/src/suite/FlexUnitIn360.as
+++ b/FlexUnit4Turnkey/src/suite/FlexUnitIn360.as
@@ -1,3 +1,19 @@
+/*
+ * 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 suite {
 	import suite.cases.BasicMathTest;
 	import suite.cases.MyTheory;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/suite/cases/BasicMathTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/suite/cases/BasicMathTest.as b/FlexUnit4Turnkey/src/suite/cases/BasicMathTest.as
index de0698a..568bef9 100644
--- a/FlexUnit4Turnkey/src/suite/cases/BasicMathTest.as
+++ b/FlexUnit4Turnkey/src/suite/cases/BasicMathTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 suite.cases {
 	import flash.errors.IllegalOperationError;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Turnkey/src/suite/cases/MyTheory.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/suite/cases/MyTheory.as b/FlexUnit4Turnkey/src/suite/cases/MyTheory.as
index d8f2848..f7d4983 100644
--- a/FlexUnit4Turnkey/src/suite/cases/MyTheory.as
+++ b/FlexUnit4Turnkey/src/suite/cases/MyTheory.as
@@ -1,3 +1,19 @@
+/*
+ * 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 suite.cases {
 	import math.SimpleMath;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/.actionScriptProperties b/FlexUnit4UIListener/.actionScriptProperties
index 965d916..be5137e 100644
--- a/FlexUnit4UIListener/.actionScriptProperties
+++ b/FlexUnit4UIListener/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <actionScriptProperties analytics="false" mainApplicationPath="FlexUnit4UIRunner.as" projectUUID="303376bf-4d37-4045-8589-d2b491b2c952" version="6">
   <compiler additionalCompilerArguments="" autoRSLOrdering="true" copyDependentFiles="false" fteInMXComponents="false" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
     <compilerSourcePath>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/.flexLibProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/.flexLibProperties b/FlexUnit4UIListener/.flexLibProperties
index f83c051..219540b 100644
--- a/FlexUnit4UIListener/.flexLibProperties
+++ b/FlexUnit4UIListener/.flexLibProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <flexLibProperties includeAllClasses="false" version="1">
   <includeClasses>
     <classEntry path="org.flexunit.flexui.TestRunnerBase"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/.project b/FlexUnit4UIListener/.project
index fa9ec4e..ee6c259 100644
--- a/FlexUnit4UIListener/.project
+++ b/FlexUnit4UIListener/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4UIListener</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/.settings/org.eclipse.core.resources.prefs
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/.settings/org.eclipse.core.resources.prefs b/FlexUnit4UIListener/.settings/org.eclipse.core.resources.prefs
index 4a61537..43e4709 100644
--- a/FlexUnit4UIListener/.settings/org.eclipse.core.resources.prefs
+++ b/FlexUnit4UIListener/.settings/org.eclipse.core.resources.prefs
@@ -1,3 +1,18 @@
+# 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.
+
 #Wed Dec 09 12:45:21 CST 2009
 eclipse.preferences.version=1
 encoding/<project>=UTF-8

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/build.xml b/FlexUnit4UIListener/build.xml
index 82c8c4f..a2afc6a 100644
--- a/FlexUnit4UIListener/build.xml
+++ b/FlexUnit4UIListener/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project name="FlexUnit4UIListener" basedir="." default="package">
    <import file="${basedir}/../utils.xml" />
    <property environment="env" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/flexLibProperties.xsl
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/flexLibProperties.xsl b/FlexUnit4UIListener/flexLibProperties.xsl
index 7fc3d53..90779ec 100644
--- a/FlexUnit4UIListener/flexLibProperties.xsl
+++ b/FlexUnit4UIListener/flexLibProperties.xsl
@@ -1,4 +1,20 @@
 <?xml version="1.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.
+-->
 <xsl:stylesheet	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 	<xsl:output indent="no" method="text" />
 	<xsl:template match="//includeClasses">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/FlexUnit4UIRunner-manifest.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/FlexUnit4UIRunner-manifest.xml b/FlexUnit4UIListener/src/FlexUnit4UIRunner-manifest.xml
index a8cb244..f6ac3ab 100644
--- a/FlexUnit4UIListener/src/FlexUnit4UIRunner-manifest.xml
+++ b/FlexUnit4UIListener/src/FlexUnit4UIRunner-manifest.xml
@@ -1,4 +1,20 @@
 <?xml version="1.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.
+-->
 <componentPackage>
 	<component class="org.flexunit.flexui.TestRunnerBase" id="TestRunnerBase"/>
 </componentPackage>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/css/FlexUnit.css
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/css/FlexUnit.css b/FlexUnit4UIListener/src/css/FlexUnit.css
index e6f3c31..5daddcd 100644
--- a/FlexUnit4UIListener/src/css/FlexUnit.css
+++ b/FlexUnit4UIListener/src/css/FlexUnit.css
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 /* CSS file for application-level compilation */
 
 /* Type-selectors do not get compiled into the components, but they are available for use by new TestRunner Applications */

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/css/FlexUnitComponents.css
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/css/FlexUnitComponents.css b/FlexUnit4UIListener/src/css/FlexUnitComponents.css
index 2d7cfdb..73e1d89 100644
--- a/FlexUnit4UIListener/src/css/FlexUnitComponents.css
+++ b/FlexUnit4UIListener/src/css/FlexUnitComponents.css
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 /* CSS file used for component-level compilation */
 
 /* Embedded Fonts */

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4UIListener/src/design.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/design.xml b/FlexUnit4UIListener/src/design.xml
index 249add3..f54a4e7 100644
--- a/FlexUnit4UIListener/src/design.xml
+++ b/FlexUnit4UIListener/src/design.xml
@@ -1,4 +1,20 @@
 <?xml version="1.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.
+-->
 <design>
    <namespaces>
      <namespace prefix="flexUnitUIRunner" uri="http://www.adobe.com/2009/flexUnitUIRunner"/>


[30/41] git commit: added Apache license header

Posted by cz...@apache.org.
added Apache license header


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/3b173d72
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/3b173d72
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/3b173d72

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 3b173d72384b7478917f951f17d37b0361db4974
Parents: 6473d28
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat May 18 12:42:25 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat May 18 12:42:27 2013 +0800

----------------------------------------------------------------------
 FlexUnit4/.actionScriptProperties                  |   16 +++++++++++++
 FlexUnit4/.flexLibProperties                       |   16 +++++++++++++
 FlexUnit4/.project                                 |   16 +++++++++++++
 FlexUnit4/build.xml                                |   16 +++++++++++++
 FlexUnit4/flexLibProperties.xsl                    |   16 +++++++++++++
 FlexUnit4/link-report.xsl                          |   16 +++++++++++++
 FlexUnit4/src/flex/lang/reflect/Constructor.as     |   16 +++++++++++++
 FlexUnit4/src/flex/lang/reflect/Field.as           |   16 +++++++++++++
 FlexUnit4/src/flex/lang/reflect/Klass.as           |   16 +++++++++++++
 FlexUnit4/src/flex/lang/reflect/Method.as          |   16 +++++++++++++
 .../src/flex/lang/reflect/builders/FieldBuilder.as |   16 +++++++++++++
 .../reflect/builders/MetaDataAnnotationBuilder.as  |   16 +++++++++++++
 .../flex/lang/reflect/builders/MethodBuilder.as    |   16 +++++++++++++
 .../src/flex/lang/reflect/cache/ClassDataCache.as  |   16 +++++++++++++
 .../lang/reflect/metadata/MetaDataAnnotation.as    |   16 +++++++++++++
 .../flex/lang/reflect/metadata/MetaDataArgument.as |   16 +++++++++++++
 .../src/flex/lang/reflect/utils/MetadataTools.as   |   16 +++++++++++++
 FlexUnit4/src/locale/en_US/metadata.properties     |   15 ++++++++++++
 FlexUnit4/src/metadata.xml                         |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/Assert.as               |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/AssertionError.as       |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/Assume.as               |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/IncludeFlexClasses.as   |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/assertThat.as           |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/asserts/assertEquals.as |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/asserts/assertFalse.as  |   16 +++++++++++++
 .../src/org/flexunit/asserts/assertNotNull.as      |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/asserts/assertNull.as   |   16 +++++++++++++
 .../org/flexunit/asserts/assertStrictlyEquals.as   |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/asserts/assertTrue.as   |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/asserts/fail.as         |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/assumeThat.as           |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/async/Async.as          |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/async/AsyncHandler.as   |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/async/AsyncLocator.as   |   16 +++++++++++++
 .../org/flexunit/async/AsyncNativeTestResponder.as |   18 ++++++++++++++-
 .../src/org/flexunit/async/AsyncTestResponder.as   |   16 +++++++++++++
 .../src/org/flexunit/async/IAsyncTestResponder.as  |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/async/ITestResponder.as |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/async/TestResponder.as  |   16 +++++++++++++
 .../constants/AnnotationArgumentConstants.as       |   16 +++++++++++++
 .../org/flexunit/constants/AnnotationConstants.as  |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/events/AsyncEvent.as    |   16 +++++++++++++
 .../src/org/flexunit/events/AsyncResponseEvent.as  |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/events/UnknownError.as  |   16 +++++++++++++
 .../org/flexunit/events/rule/EventExpectations.as  |   16 +++++++++++++
 .../src/org/flexunit/events/rule/EventRule.as      |   16 +++++++++++++
 .../org/flexunit/events/rule/ExpectationEvent.as   |   16 +++++++++++++
 .../org/flexunit/events/rule/IEventExpectation.as  |   16 +++++++++++++
 .../src/org/flexunit/events/rule/MultiMatcher.as   |   16 +++++++++++++
 .../org/flexunit/events/rule/QuantityMatcher.as    |   16 +++++++++++++
 .../src/org/flexunit/events/rule/TimeoutMonitor.as |   16 +++++++++++++
 .../runners/statements/AssignmentSequencer.as      |   16 +++++++++++++
 .../MethodCompleteWithParamsStatement.as           |   16 +++++++++++++
 .../runners/statements/TheoryAnchor.as             |   16 +++++++++++++
 .../runners/statements/TheoryBlockRunner.as        |   16 +++++++++++++
 .../statements/TheoryBlockRunnerStatement.as       |   16 +++++++++++++
 .../experimental/theories/IParameterSupplier.as    |   16 +++++++++++++
 .../experimental/theories/IPotentialAssignment.as  |   16 +++++++++++++
 .../experimental/theories/ParameterSignature.as    |   16 +++++++++++++
 .../experimental/theories/PotentialAssignment.as   |   16 +++++++++++++
 .../org/flexunit/experimental/theories/Theories.as |   16 +++++++++++++
 .../theories/internals/AllMembersSupplier.as       |   16 +++++++++++++
 .../experimental/theories/internals/Assignments.as |   16 +++++++++++++
 .../internals/ParameterizedAssertionError.as       |   16 +++++++++++++
 .../error/CouldNotGenerateValueException.as        |   16 +++++++++++++
 .../internals/AssumptionViolatedException.as       |   16 +++++++++++++
 .../src/org/flexunit/internals/TextListener.as     |   16 +++++++++++++
 .../src/org/flexunit/internals/TraceListener.as    |   16 +++++++++++++
 .../builders/AllDefaultPossibilitiesBuilder.as     |   16 +++++++++++++
 .../internals/builders/FlexUnit1Builder.as         |   16 +++++++++++++
 .../internals/builders/FlexUnit4Builder.as         |   16 +++++++++++++
 .../builders/FlexUnit4QualifiedBuilder.as          |   16 +++++++++++++
 .../flexunit/internals/builders/IgnoredBuilder.as  |   16 +++++++++++++
 .../internals/builders/IgnoredClassRunner.as       |   16 +++++++++++++
 .../flexunit/internals/builders/MetaDataBuilder.as |   16 +++++++++++++
 .../org/flexunit/internals/builders/NullBuilder.as |   16 +++++++++++++
 .../builders/OnlyRecognizedTestClassBuilder.as     |   16 +++++++++++++
 .../internals/builders/SuiteMethodBuilder.as       |   16 +++++++++++++
 .../dependency/ExternalDependencyResolver.as       |   16 +++++++++++++
 .../dependency/ExternalRunnerDependencyWatcher.as  |   16 +++++++++++++
 .../dependency/IExternalDependencyResolver.as      |   16 +++++++++++++
 .../dependency/IExternalRunnerDependencyWatcher.as |   16 +++++++++++++
 .../internals/events/ExecutionCompleteEvent.as     |   16 +++++++++++++
 .../org/flexunit/internals/flexunit_internal.as    |   16 +++++++++++++
 .../internals/listeners/FluintDisplayListener.as   |   16 +++++++++++++
 .../listeners/FluintDisplayListenerView.mxml       |   16 +++++++++++++
 .../src/org/flexunit/internals/matchers/Each.as    |   16 +++++++++++++
 .../flexunit/internals/namespaces/classInternal.as |   16 +++++++++++++
 .../flexunit/internals/requests/ClassRequest.as    |   16 +++++++++++++
 .../flexunit/internals/requests/FilterRequest.as   |   16 +++++++++++++
 .../internals/requests/QualifyingRequest.as        |   16 +++++++++++++
 .../flexunit/internals/requests/SortingRequest.as  |   16 +++++++++++++
 .../internals/runners/ChildRunnerSequencer.as      |   16 +++++++++++++
 .../internals/runners/ErrorReportingRunner.as      |   16 +++++++++++++
 .../internals/runners/FlexUnit1ClassRunner.as      |   16 +++++++++++++
 .../internals/runners/InitializationError.as       |   16 +++++++++++++
 .../org/flexunit/internals/runners/SuiteMethod.as  |   16 +++++++++++++
 .../internals/runners/model/EachTestNotifier.as    |   16 +++++++++++++
 .../internals/runners/model/IReflectiveCallable.as |   16 +++++++++++++
 .../runners/model/MultipleFailureException.as      |   16 +++++++++++++
 .../runners/statements/AsyncStatementBase.as       |   16 +++++++++++++
 .../internals/runners/statements/ExpectAsync.as    |   16 +++++++++++++
 .../runners/statements/ExpectException.as          |   16 +++++++++++++
 .../flexunit/internals/runners/statements/Fail.as  |   16 +++++++++++++
 .../internals/runners/statements/FailOnTimeout.as  |   16 +++++++++++++
 .../runners/statements/IAsyncHandlingStatement.as  |   16 +++++++++++++
 .../runners/statements/IAsyncStatement.as          |   16 +++++++++++++
 .../internals/runners/statements/InvokeMethod.as   |   16 +++++++++++++
 .../internals/runners/statements/MethodRuleBase.as |   16 +++++++++++++
 .../internals/runners/statements/RunAfters.as      |   16 +++++++++++++
 .../internals/runners/statements/RunAftersClass.as |   16 +++++++++++++
 .../runners/statements/RunAftersInline.as          |   16 +++++++++++++
 .../internals/runners/statements/RunBefores.as     |   16 +++++++++++++
 .../runners/statements/RunBeforesClass.as          |   16 +++++++++++++
 .../runners/statements/RunBeforesInline.as         |   16 +++++++++++++
 .../runners/statements/SequencerWithDecoration.as  |   16 +++++++++++++
 .../runners/statements/StackAndFrameManagement.as  |   16 +++++++++++++
 .../runners/statements/StatementSequencer.as       |   16 +++++++++++++
 .../internals/runners/watcher/FrameWatcher.as      |   16 +++++++++++++
 .../src/org/flexunit/reporting/FailureFormatter.as |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/rules/IMethodRule.as    |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/Description.as   |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/Descriptor.as    |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/FlexUnitCore.as  |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/IDescribable.as  |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/IDescription.as  |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/IRequest.as      |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/IRunner.as       |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/Request.as       |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runner/Result.as        |   16 +++++++++++++
 .../runner/external/ExternalDependencyToken.as     |   16 +++++++++++++
 .../runner/external/IExternalDependencyData.as     |   16 +++++++++++++
 .../runner/external/IExternalDependencyLoader.as   |   16 +++++++++++++
 .../runner/external/IExternalDependencyRunner.as   |   16 +++++++++++++
 .../org/flexunit/runner/manipulation/IFilter.as    |   16 +++++++++++++
 .../flexunit/runner/manipulation/IFilterable.as    |   16 +++++++++++++
 .../flexunit/runner/manipulation/IFixtureSorter.as |   16 +++++++++++++
 .../flexunit/runner/manipulation/ISimpleCursor.as  |   16 +++++++++++++
 .../src/org/flexunit/runner/manipulation/ISort.as  |   16 +++++++++++++
 .../org/flexunit/runner/manipulation/ISortable.as  |   16 +++++++++++++
 .../org/flexunit/runner/manipulation/ISorter.as    |   16 +++++++++++++
 .../runner/manipulation/NoTestsRemainException.as  |   16 +++++++++++++
 .../manipulation/OrderArgumentPlusAlphaSorter.as   |   16 +++++++++++++
 .../OrderArgumentPlusInheritanceSorter.as          |   16 +++++++++++++
 .../runner/manipulation/OrderArgumentSorter.as     |   16 +++++++++++++
 .../src/org/flexunit/runner/manipulation/Sorter.as |   16 +++++++++++++
 .../manipulation/fields/FieldMetaDataSorter.as     |   16 +++++++++++++
 .../runner/manipulation/fields/IFieldSorter.as     |   16 +++++++++++++
 .../runner/manipulation/filters/AbstractFilter.as  |   16 +++++++++++++
 .../runner/manipulation/filters/DynamicFilter.as   |   16 +++++++++++++
 .../manipulation/filters/IncludeAllFilter.as       |   16 +++++++++++++
 .../manipulation/filters/MethodNameFilter.as       |   16 +++++++++++++
 .../ClassInheritanceOrderCache.as                  |   16 +++++++++++++
 .../sortingInheritance/ISortingInheritanceCache.as |   16 +++++++++++++
 .../org/flexunit/runner/notification/Failure.as    |   16 +++++++++++++
 .../notification/IAsyncCompletionRunListener.as    |   16 +++++++++++++
 .../runner/notification/IAsyncRunListener.as       |   16 +++++++++++++
 .../notification/IAsyncStartupRunListener.as       |   16 +++++++++++++
 .../flexunit/runner/notification/IRunListener.as   |   16 +++++++++++++
 .../flexunit/runner/notification/IRunNotifier.as   |   16 +++++++++++++
 .../runner/notification/ITemporalRunListener.as    |   16 +++++++++++++
 .../flexunit/runner/notification/RunListener.as    |   16 +++++++++++++
 .../flexunit/runner/notification/RunNotifier.as    |   16 +++++++++++++
 .../runner/notification/StoppedByUserException.as  |   16 +++++++++++++
 .../notification/async/AsyncListenerWatcher.as     |   16 +++++++++++++
 .../runner/notification/async/WaitingListener.as   |   16 +++++++++++++
 .../runner/notification/async/XMLListener.as       |   16 +++++++++++++
 .../flexunit/runners/BlockFlexUnit4ClassRunner.as  |   16 +++++++++++++
 .../src/org/flexunit/runners/Parameterized.as      |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runners/ParentRunner.as |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/runners/Suite.as        |   16 +++++++++++++
 .../org/flexunit/runners/model/FrameworkMethod.as  |   16 +++++++++++++
 .../org/flexunit/runners/model/IRunnerBuilder.as   |   16 +++++++++++++
 .../src/org/flexunit/runners/model/IStatement.as   |   16 +++++++++++++
 .../flexunit/runners/model/ParameterizedMethod.as  |   16 +++++++++++++
 .../flexunit/runners/model/RunnerBuilderBase.as    |   16 +++++++++++++
 .../src/org/flexunit/runners/model/TestClass.as    |   16 +++++++++++++
 .../org/flexunit/token/AsyncCoreStartupToken.as    |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/token/AsyncTestToken.as |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/token/ChildResult.as    |   16 +++++++++++++
 .../src/org/flexunit/token/IAsyncTestToken.as      |   16 +++++++++++++
 FlexUnit4/src/org/flexunit/utils/ClassNameUtil.as  |   16 +++++++++++++
 .../src/org/flexunit/utils/DescriptionUtil.as      |   16 +++++++++++++
 .../src/org/fluint/sequence/ISequenceAction.as     |   16 +++++++++++++
 FlexUnit4/src/org/fluint/sequence/ISequencePend.as |   16 +++++++++++++
 FlexUnit4/src/org/fluint/sequence/ISequenceStep.as |   16 +++++++++++++
 .../org/fluint/sequence/SequenceBindingWaiter.as   |   16 +++++++++++++
 .../src/org/fluint/sequence/SequenceCaller.as      |   16 +++++++++++++
 FlexUnit4/src/org/fluint/sequence/SequenceDelay.as |   16 +++++++++++++
 .../org/fluint/sequence/SequenceEventDispatcher.as |   16 +++++++++++++
 .../src/org/fluint/sequence/SequenceRunner.as      |   16 +++++++++++++
 .../src/org/fluint/sequence/SequenceSetter.as      |   16 +++++++++++++
 .../src/org/fluint/sequence/SequenceWaiter.as      |   16 +++++++++++++
 .../uiImpersonation/IVisualEnvironmentBuilder.as   |   16 +++++++++++++
 .../uiImpersonation/IVisualTestEnvironment.as      |   16 +++++++++++++
 .../org/fluint/uiImpersonation/UIImpersonator.as   |   16 +++++++++++++
 .../uiImpersonation/VisualTestEnvironment.as       |   16 +++++++++++++
 .../VisualTestEnvironmentBuilder.as                |   16 +++++++++++++
 .../actionScript/ActionScriptEnvironmentBuilder.as |   16 +++++++++++++
 .../ActionScriptVisualTestEnvironment.as           |   16 +++++++++++++
 .../uiImpersonation/flex/FlexEnvironmentBuilder.as |   16 +++++++++++++
 .../flex/FlexMXVisualTestEnvironment.as            |   16 +++++++++++++
 .../flex/FlexSparkVisualTestEnvironment.as         |   16 +++++++++++++
 FlexUnit4AirCIListener/.actionScriptProperties     |   16 +++++++++++++
 FlexUnit4AirCIListener/.flexLibProperties          |   16 +++++++++++++
 FlexUnit4AirCIListener/.project                    |   16 +++++++++++++
 .../.settings/org.eclipse.core.resources.prefs     |   15 ++++++++++++
 FlexUnit4AirCIListener/build.xml                   |   16 +++++++++++++
 .../src/org/flexunit/listeners/AirCIListener.as    |   16 +++++++++++++
 .../src/org/flexunit/listeners/closer/AirCloser.as |   16 +++++++++++++
 FlexUnit4AntTasks/.classpath                       |   16 +++++++++++++
 FlexUnit4AntTasks/.project                         |   16 +++++++++++++
 .../.settings/org.eclipse.jdt.core.prefs           |   15 ++++++++++++
 FlexUnit4AntTasks/build.xml                        |   16 +++++++++++++
 .../src/org/flexunit/ant/FlexUnitSocketServer.java |   16 +++++++++++++
 .../src/org/flexunit/ant/FlexUnitSocketThread.java |   16 +++++++++++++
 .../src/org/flexunit/ant/LoggingUtil.java          |   16 +++++++++++++
 .../org/flexunit/ant/launcher/OperatingSystem.java |   16 +++++++++++++
 .../flexunit/ant/launcher/commands/Command.java    |   16 +++++++++++++
 .../launcher/commands/headless/XvncException.java  |   16 +++++++++++++
 .../commands/headless/XvncStartCommand.java        |   16 +++++++++++++
 .../commands/headless/XvncStopCommand.java         |   16 +++++++++++++
 .../ant/launcher/commands/player/AdlCommand.java   |   16 +++++++++++++
 .../commands/player/CustomPlayerCommand.java       |   16 +++++++++++++
 .../commands/player/DefaultPlayerCommand.java      |   16 +++++++++++++
 .../commands/player/FlashPlayerCommand.java        |   16 +++++++++++++
 .../launcher/commands/player/PlayerCommand.java    |   16 +++++++++++++
 .../commands/player/PlayerCommandFactory.java      |   16 +++++++++++++
 .../ant/launcher/commands/player/TrustFile.java    |   16 +++++++++++++
 .../ant/launcher/contexts/DefaultContext.java      |   16 +++++++++++++
 .../ant/launcher/contexts/ExecutionContext.java    |   16 +++++++++++++
 .../launcher/contexts/ExecutionContextFactory.java |   16 +++++++++++++
 .../ant/launcher/contexts/HeadlessContext.java     |   16 +++++++++++++
 .../ant/launcher/platforms/LinuxDefaults.java      |   16 +++++++++++++
 .../ant/launcher/platforms/MacOSXDefaults.java     |   16 +++++++++++++
 .../ant/launcher/platforms/PlatformDefaults.java   |   16 +++++++++++++
 .../ant/launcher/platforms/WindowsDefaults.java    |   16 +++++++++++++
 .../src/org/flexunit/ant/report/Report.java        |   16 +++++++++++++
 .../src/org/flexunit/ant/report/Reports.java       |   16 +++++++++++++
 .../src/org/flexunit/ant/report/Suite.java         |   16 +++++++++++++
 .../src/org/flexunit/ant/tasks/Compilation.java    |   16 +++++++++++++
 .../src/org/flexunit/ant/tasks/FlexUnitTask.java   |   16 +++++++++++++
 .../src/org/flexunit/ant/tasks/TestRun.java        |   16 +++++++++++++
 .../configuration/CompilationConfiguration.java    |   16 +++++++++++++
 .../ant/tasks/configuration/StepConfiguration.java |   16 +++++++++++++
 .../ant/tasks/configuration/TaskConfiguration.java |   16 +++++++++++++
 .../tasks/configuration/TestRunConfiguration.java  |   16 +++++++++++++
 .../tasks/types/CompilationFileSetCollection.java  |   16 +++++++++++++
 .../org/flexunit/ant/tasks/types/LibraryPaths.java |   16 +++++++++++++
 .../org/flexunit/ant/tasks/types/LoadConfig.java   |   16 +++++++++++++
 .../org/flexunit/ant/tasks/types/SourcePaths.java  |   16 +++++++++++++
 .../ant/tasks/integration/FlexUnitTaskHarness.java |   16 +++++++++++++
 FlexUnit4AntTasks/test/sandbox/src/A/Aclass.as     |   16 +++++++++++++
 FlexUnit4AntTasks/test/sandbox/src/A/B/Bclass.as   |   16 +++++++++++++
 FlexUnit4AntTasks/test/sandbox/src/A/B/D/Dclass.as |   16 +++++++++++++
 FlexUnit4AntTasks/test/sandbox/src/A/B/E/Eclass.as |   16 +++++++++++++
 FlexUnit4AntTasks/test/sandbox/src/A/C/Cclass.as   |   16 +++++++++++++
 FlexUnit4AntTasks/test/sandbox/src/A/C/F/Fclass.as |   16 +++++++++++++
 FlexUnit4AntTasks/test/sandbox/src/A/C/G/Gclass.as |   16 +++++++++++++
 FlexUnit4CIListener/.actionScriptProperties        |   16 +++++++++++++
 FlexUnit4CIListener/.flexLibProperties             |   16 +++++++++++++
 FlexUnit4CIListener/.project                       |   16 +++++++++++++
 .../.settings/org.eclipse.core.resources.prefs     |   15 ++++++++++++
 FlexUnit4CIListener/build.xml                      |   16 +++++++++++++
 .../src/org/flexunit/listeners/CIListener.as       |   16 +++++++++++++
 .../src/org/flexunit/listeners/TestCaseReport.as   |   16 +++++++++++++
 .../src/org/flexunit/listeners/TestSuiteReport.as  |   16 +++++++++++++
 .../flexunit/listeners/VisualDebuggerListener.mxml |   16 +++++++++++++
 .../flexunit/listeners/closer/ApplicationCloser.as |   16 +++++++++++++
 .../closer/StandAloneFlashPlayerCloser.as          |   16 +++++++++++++
 FlexUnit4FlexCoverListener/.actionScriptProperties |   16 +++++++++++++
 FlexUnit4FlexCoverListener/.flexLibProperties      |   16 +++++++++++++
 FlexUnit4FlexCoverListener/.project                |   16 +++++++++++++
 .../.settings/org.eclipse.core.resources.prefs     |   15 ++++++++++++
 FlexUnit4FlexCoverListener/build.xml               |   16 +++++++++++++
 .../org/flexunit/listeners/FlexCoverListener.as    |   16 +++++++++++++
 .../flexunit/listeners/closer/FlexCoverCloser.as   |   16 +++++++++++++
 FlexUnit4FluintExtensions/.actionScriptProperties  |   16 +++++++++++++
 FlexUnit4FluintExtensions/.flexLibProperties       |   16 +++++++++++++
 FlexUnit4FluintExtensions/.project                 |   16 +++++++++++++
 FlexUnit4FluintExtensions/build.xml                |   16 +++++++++++++
 .../flexunit/internals/builders/Fluint1Builder.as  |   16 +++++++++++++
 .../internals/runners/Fluint1ClassRunner.as        |   16 +++++++++++++
 FlexUnit4SampleCIProject/.actionScriptProperties   |   16 +++++++++++++
 FlexUnit4SampleCIProject/.flexProperties           |   16 +++++++++++++
 FlexUnit4SampleCIProject/.project                  |   16 +++++++++++++
 .../html-template/history/history.css              |   16 +++++++++++++
 .../html-template/history/history.js               |   16 +++++++++++++
 .../html-template/history/historyFrame.html        |   16 +++++++++++++
 .../html-template/index.template.html              |   16 +++++++++++++
 FlexUnit4SampleCIProject/src/main/flex/Main.mxml   |   16 +++++++++++++
 .../src/main/flex/org/flexunit/demo/EchoPanel.mxml |   16 +++++++++++++
 .../src/test/flex/AirTestRunner.mxml               |   16 +++++++++++++
 .../src/test/flex/TestRunner.mxml                  |   16 +++++++++++++
 .../test/flex/org/flexunit/demo/EchoPanelTest.as   |   16 +++++++++++++
 .../src/test/flex/org/flexunit/demo/SampleTest.as  |   16 +++++++++++++
 FlexUnit4Test/.actionScriptProperties              |   16 +++++++++++++
 FlexUnit4Test/.flexProperties                      |   16 +++++++++++++
 FlexUnit4Test/.project                             |   16 +++++++++++++
 FlexUnit4Test/build.xml                            |   16 +++++++++++++
 FlexUnit4Test/fc-to-cobertura.xsl                  |   16 +++++++++++++
 FlexUnit4Test/html-template/history/history.css    |   16 +++++++++++++
 FlexUnit4Test/html-template/history/history.js     |   16 +++++++++++++
 .../html-template/history/historyFrame.html        |   16 +++++++++++++
 FlexUnit4Test/html-template/index.template.html    |   16 +++++++++++++
 FlexUnit4Test/src/InstrumentTestRunner.mxml        |   16 +++++++++++++
 FlexUnit4Test/src/TestRunner.mxml                  |   16 +++++++++++++
 FlexUnit4Test/src/UIRunner.mxml                    |   16 +++++++++++++
 .../src/compilationSuite/FlexUnit4ASSuite.as       |   16 +++++++++++++
 FlexUnit4Test/src/compilationSuite/SuitesToRun.as  |   16 +++++++++++++
 .../actionscript/ActionScriptSuite.as              |   16 +++++++++++++
 .../src/compilationSuite/flex/FlexSuite.as         |   16 +++++++++++++
 .../src/flex/lang/reflect/mocks/KlassMock.as       |   16 +++++++++++++
 .../src/flex/lang/reflect/mocks/MethodMock.as      |   16 +++++++++++++
 FlexUnit4Test/src/flexUnitTests/TestingTester.as   |   16 +++++++++++++
 .../flexUnit1/framework/AllFrameworkTests.as       |   16 +++++++++++++
 .../flexUnit1/framework/AsynchronousTestCase.as    |   16 +++++++++++++
 .../framework/AsynchronousValueDispatcher.as       |   16 +++++++++++++
 .../flexUnit1/framework/ErrorTestCase.as           |   16 +++++++++++++
 .../flexUnit1/framework/FailureTestCase.as         |   16 +++++++++++++
 .../framework/SetupErrorTearDownTestCase.as        |   16 +++++++++++++
 .../flexUnit1/framework/SetupErrorTestCase.as      |   16 +++++++++++++
 .../flexUnit1/framework/SuccessTestCase.as         |   16 +++++++++++++
 .../flexUnit1/framework/TearDownErrorTestCase.as   |   16 +++++++++++++
 .../flexUnit1/framework/TearDownTestCase.as        |   16 +++++++++++++
 .../flexUnit1/framework/TestAssert.as              |   16 +++++++++++++
 .../flexUnit1/framework/TestAsynchronous.as        |   16 +++++++++++++
 .../flexUnit1/framework/TestEventfulTestCase.as    |   16 +++++++++++++
 .../flexUnit1/framework/TestTestCase.as            |   16 +++++++++++++
 .../flexUnit1/framework/TestTestListener.as        |   16 +++++++++++++
 .../flexUnit1/framework/ValueEvent.as              |   16 +++++++++++++
 .../suites/frameworkSuite/FlexUnit4Suite.as        |   16 +++++++++++++
 .../frameworkSuite/cases/TestASComponentUse.as     |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestAssert.as      |   16 +++++++++++++
 .../frameworkSuite/cases/TestAsynchronousAS.as     |   16 +++++++++++++
 .../frameworkSuite/cases/TestAsynchronousFlex.as   |   16 +++++++++++++
 .../cases/TestAsynchronousSetUpTearDown.as         |   16 +++++++++++++
 .../cases/TestBeforeAfterClassOrder.as             |   16 +++++++++++++
 .../cases/TestBeforeAfterClassOrderAsync.as        |   16 +++++++++++++
 .../cases/TestBeforeAfterInheritance.as            |   16 +++++++++++++
 .../TestBeforeAfterInheritanceBaseBaseClass.as     |   16 +++++++++++++
 .../cases/TestBeforeAfterInheritanceBaseClass.as   |   16 +++++++++++++
 .../frameworkSuite/cases/TestBeforeAfterOrder.as   |   16 +++++++++++++
 .../cases/TestBeforeAfterOrderAsync.as             |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestBindingUse.as  |   16 +++++++++++++
 .../frameworkSuite/cases/TestDoubleMetaData.as     |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestIgnore.as      |   16 +++++++++++++
 .../frameworkSuite/cases/TestMXMLComponentUse.as   |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestMethodOrder.as |   16 +++++++++++++
 .../frameworkSuite/cases/TestParameterized.as      |   16 +++++++++++++
 .../frameworkSuite/cases/TestParameterized2.as     |   16 +++++++++++++
 .../frameworkSuite/cases/TestParameterized3.as     |   16 +++++++++++++
 .../cases/TestSynchronousSetUpTearDown.as          |   16 +++++++++++++
 .../cases/helper/MySpecialResponder.as             |   16 +++++++++++++
 .../frameworkSuite/cases/helper/ParamDataExt.as    |   16 +++++++++++++
 .../cases/mxml/SimpleMXMLLoginComponent.mxml       |   16 +++++++++++++
 .../frameworkSuite/cases/valueObject/Person.as     |   16 +++++++++++++
 .../parameterizedSuite/ParamSuite.as               |   16 +++++++++++++
 .../TestJUnitParameterizedBasicFunctionality.as    |   16 +++++++++++++
 .../TestJUnitParameterizedExternalLoader.as        |   16 +++++++++++++
 ...estJUnitParameterizedFuncVsArrayDataProvider.as |   16 +++++++++++++
 .../TestJUnitParameterizedWithAsync.as             |   16 +++++++++++++
 .../TestJUnitParameterizedWithBeforeAfter.as       |   16 +++++++++++++
 .../TestNGParameterizedBasicFunctionality.as       |   16 +++++++++++++
 .../TestNGParameterizedExternalLoader.as           |   16 +++++++++++++
 .../TestNGParameterizedFuncVsArrayDataProvider.as  |   16 +++++++++++++
 .../TestNGParameterizedWithAsync.as                |   16 +++++++++++++
 .../TestNGParameterizedWithBeforeAfter.as          |   16 +++++++++++++
 .../parameterizedSuite/helper/ParamDataHelper.as   |   16 +++++++++++++
 .../suites/frameworkSuite/rulesSuite/RulesSuite.as |   16 +++++++++++++
 .../frameworkSuite/rulesSuite/TestRuleOrder.as     |   16 +++++++++++++
 .../rulesSuite/TestRulesBasicImplementation.as     |   16 +++++++++++++
 .../rulesSuite/TestRulesErrorWrapping.as           |   16 +++++++++++++
 .../TestRulesRuleDoesntImplementIMethodRule.as     |   16 +++++++++++++
 .../rulesSuite/helper/errors/RuleError.as          |   16 +++++++++++++
 .../helper/rules/BasicImplementationRule.as        |   16 +++++++++++++
 .../rulesSuite/helper/rules/ErrorWrappingRule.as   |   16 +++++++++++++
 .../rulesSuite/helper/rules/ordered/RuleFifty.as   |   16 +++++++++++++
 .../rulesSuite/helper/rules/ordered/RuleNoOrder.as |   16 +++++++++++++
 .../rulesSuite/helper/rules/ordered/RuleOne.as     |   16 +++++++++++++
 .../rulesSuite/helper/rules/ordered/RuleTwo.as     |   16 +++++++++++++
 .../frameworkSuite/theorySuite/AsyncTheorySuite.as |   16 +++++++++++++
 .../ExternalTheoryDependencyDataSuite.as           |   16 +++++++++++++
 .../theorySuite/ExternalTheorySuite.as             |   16 +++++++++++++
 .../theorySuite/FunctionalTheorySuite.as           |   16 +++++++++++++
 .../theorySuite/TestTheoriesSuite.as               |   16 +++++++++++++
 .../theorySuite/TestTheoriesWithBeforeAfter.as     |   16 +++++++++++++
 .../frameworkSuite/theorySuite/TheorySuite.as      |   16 +++++++++++++
 .../theorySuite/helper/SampleTheoryDataHelper.as   |   16 +++++++++++++
 .../src/org/flexunit/FlexUnit4FlexSuite.as         |   16 +++++++++++++
 .../src/org/flexunit/FlexUnit4FlexUnitSuite.as     |   16 +++++++++++++
 FlexUnit4Test/src/org/flexunit/async/AsyncSuite.as |   16 +++++++++++++
 .../src/org/flexunit/async/cases/AsyncASCase.as    |   16 +++++++++++++
 .../src/org/flexunit/async/cases/AsyncFlexCase.as  |   16 +++++++++++++
 .../org/flexunit/async/cases/AsyncHandlerCase.as   |   16 +++++++++++++
 .../org/flexunit/async/cases/AsyncLocatorCase.as   |   16 +++++++++++++
 .../org/flexunit/async/cases/AsyncServiceCase.as   |   16 +++++++++++++
 .../flexunit/async/cases/AsyncTestResponderCase.as |   16 +++++++++++++
 .../org/flexunit/async/cases/TestResponderCase.as  |   16 +++++++++++++
 .../flexunit/async/mocks/EventDispatcherMock.as    |   16 +++++++++++++
 .../src/org/flexunit/async/mocks/ResponderMock.as  |   16 +++++++++++++
 FlexUnit4Test/src/org/flexunit/cases/AssertCase.as |   16 +++++++++++++
 .../src/org/flexunit/cases/AssertThatCase.as       |   16 +++++++++++++
 .../src/org/flexunit/cases/AssertionErrorCase.as   |   16 +++++++++++++
 FlexUnit4Test/src/org/flexunit/cases/AssumeCase.as |   16 +++++++++++++
 .../src/org/flexunit/cases/AssumeThatCase.as       |   16 +++++++++++++
 .../org/flexunit/cases/IncludeFlexClassesCase.as   |   16 +++++++++++++
 .../src/org/flexunit/events/EventsSuite.as         |   16 +++++++++++++
 .../org/flexunit/events/cases/AsyncEventCase.as    |   16 +++++++++++++
 .../events/cases/AsyncResponseEventCase.as         |   16 +++++++++++++
 .../src/org/flexunit/events/rule/EventRuleSuite.as |   16 +++++++++++++
 .../events/rule/cases/AsyncEventQuantityTesting.as |   16 +++++++++++++
 .../events/rule/cases/AsyncEventTesting.as         |   16 +++++++++++++
 .../events/rule/cases/SyncEventQuantityTesting.as  |   16 +++++++++++++
 .../flexunit/events/rule/cases/SyncEventTesting.as |   16 +++++++++++++
 .../org/flexunit/experimental/ExperimentSuite.as   |   16 +++++++++++++
 .../results/cases/ResultMatchersClass.as           |   16 +++++++++++++
 .../ExperimentalRunnersStatementsSuite.as          |   16 +++++++++++++
 .../statements/cases/AssignmentSequencerCase.as    |   16 +++++++++++++
 .../cases/MethodCompleteWithParamStatementCase.as  |   16 +++++++++++++
 .../runners/statements/cases/TheoryAnchorCase.as   |   16 +++++++++++++
 .../cases/TheoryBlockRunnerStatementCase.as        |   16 +++++++++++++
 .../theories/ExperimentalTheoriesSuite.as          |   16 +++++++++++++
 .../theories/cases/ParameterSignatureCase.as       |   16 +++++++++++++
 .../theories/cases/PotentialAssignmentCase.as      |   16 +++++++++++++
 .../internals/ExperimentalTheoriesInteralsSuite.as |   16 +++++++++++++
 .../theories/internals/cases/AssignmentsCase.as    |   16 +++++++++++++
 .../cases/ParameterizedAssertionErrorCase.as       |   16 +++++++++++++
 .../error/CouldNotGenerateValueExceptionCase.as    |   16 +++++++++++++
 .../src/org/flexunit/internals/InternalsSuite.as   |   16 +++++++++++++
 .../internals/builders/InternalBuildersSuite.as    |   16 +++++++++++++
 .../AllDefaultPossibilitesBuilderFluintCase.as     |   16 +++++++++++++
 .../cases/AllDefaultPossibilitiesBuilderASCase.as  |   16 +++++++++++++
 .../AllDefaultPossibilitiesBuilderFlexCase.as      |   16 +++++++++++++
 .../builders/cases/FlexUnit1BuilderCase.as         |   16 +++++++++++++
 .../builders/cases/FlexUnit4BuilderCase.as         |   16 +++++++++++++
 .../internals/builders/cases/Fluint1BuilderCase.as |   16 +++++++++++++
 .../internals/builders/cases/IgnoredBuilderCase.as |   16 +++++++++++++
 .../builders/cases/IgnoredClassRunnerCase.as       |   16 +++++++++++++
 .../builders/cases/MetaDataBuilderCase.as          |   16 +++++++++++++
 .../internals/builders/cases/NullBuilderCase.as    |   16 +++++++++++++
 .../builders/cases/SuiteMethodBuilderCase.as       |   16 +++++++++++++
 .../builders/cases/helper/BaseClassHasRunWith.as   |   16 +++++++++++++
 .../builders/cases/helper/ChildClassNoRunWith.as   |   16 +++++++++++++
 .../builders/cases/helper/SingleTestStub.as        |   16 +++++++++++++
 .../builders/definitions/FlexUnit1Class.as         |   16 +++++++++++++
 .../builders/definitions/FlexUnit4Class.as         |   16 +++++++++++++
 .../builders/definitions/FlexUnit4SuiteClass.as    |   16 +++++++++++++
 .../definitions/FlexUnit4SuiteClassFail.as         |   16 +++++++++++++
 .../internals/builders/definitions/Fluint1Class.as |   16 +++++++++++++
 .../internals/builders/definitions/Fluint1Suite.as |   16 +++++++++++++
 .../internals/builders/definitions/IgnoredClass.as |   16 +++++++++++++
 .../internals/cases/ArrayComparisonFauilureCase.as |   16 +++++++++++++
 .../flexunit/internals/cases/TextListenerCase.as   |   16 +++++++++++++
 .../flexunit/internals/cases/TraceListenerCase.as  |   16 +++++++++++++
 .../events/cases/ExecutionCompleteEventCase.as     |   16 +++++++++++++
 .../src/org/flexunit/internals/mocks/LoggerMock.as |   16 +++++++++++++
 .../internals/requests/InternalRequestsSuite.as    |   16 +++++++++++++
 .../internals/requests/cases/ClassRequestCase.as   |   16 +++++++++++++
 .../internals/requests/cases/FilterRequestCase.as  |   16 +++++++++++++
 .../internals/requests/cases/SortingRequestCase.as |   16 +++++++++++++
 .../internals/runners/InternalRunnersSuite.as      |   16 +++++++++++++
 .../runners/cases/ChildRunnerSequencerCase.as      |   16 +++++++++++++
 .../runners/cases/ErrorReportingRunnerCase.as      |   16 +++++++++++++
 .../internals/runners/cases/FailureBeforeCase.as   |   16 +++++++++++++
 .../runners/cases/InitializationErrorCase.as       |   16 +++++++++++++
 .../runners/model/InternalRunnersModelSuite.as     |   16 +++++++++++++
 .../runners/model/cases/EachTestNotifierCase.as    |   16 +++++++++++++
 .../model/cases/MultipleFailureExceptionCase.as    |   16 +++++++++++++
 .../statements/InternalRunnersStatmentsSuite.as    |   16 +++++++++++++
 .../statements/cases/AsyncStatementBaseCase.as     |   16 +++++++++++++
 .../runners/statements/cases/ExpectAsyncASCase.as  |   16 +++++++++++++
 .../statements/cases/ExpectExceptionCase.as        |   16 +++++++++++++
 .../internals/runners/statements/cases/FailCase.as |   16 +++++++++++++
 .../runners/statements/cases/FailOnTimeoutCase.as  |   16 +++++++++++++
 .../runners/statements/cases/InvokeMethodCase.as   |   16 +++++++++++++
 .../runners/statements/cases/RunAftersCase.as      |   16 +++++++++++++
 .../runners/statements/cases/RunAftersClassCase.as |   16 +++++++++++++
 .../runners/statements/cases/RunBeforesCase.as     |   16 +++++++++++++
 .../statements/cases/RunBeforesClassCase.as        |   16 +++++++++++++
 .../cases/SequencerWithDecorationCase.as           |   16 +++++++++++++
 .../cases/StackAndFrameManagementCase.as           |   16 +++++++++++++
 .../statements/cases/StatementSequencerCase.as     |   16 +++++++++++++
 .../statements/mock/AsyncHandlingStatementMock.as  |   16 +++++++++++++
 .../runners/statements/mock/AsyncStatementMock.as  |   16 +++++++++++++
 .../runners/statements/mock/TestableExpectAsync.as |   16 +++++++++++++
 .../matchers/cases/FlexUnitMatchersCase.as         |   16 +++++++++++++
 .../src/org/flexunit/reporting/ReportingSuite.as   |   16 +++++++++++++
 .../reporting/cases/FailureFormatterASCase.as      |   16 +++++++++++++
 .../reporting/cases/FailureFormatterFlexCase.as    |   16 +++++++++++++
 .../src/org/flexunit/runner/RunnerSuite.as         |   16 +++++++++++++
 .../org/flexunit/runner/cases/DescriptionCase.as   |   16 +++++++++++++
 .../org/flexunit/runner/cases/DescriptorCase.as    |   16 +++++++++++++
 .../src/org/flexunit/runner/cases/RequestCase.as   |   16 +++++++++++++
 .../src/org/flexunit/runner/cases/ResultCase.as    |   16 +++++++++++++
 .../runner/manipulation/ManipulationSuite.as       |   16 +++++++++++++
 .../runner/manipulation/cases/FilterCase.as        |   16 +++++++++++++
 .../cases/MetadataAlphabeticalSorterCase.as        |   16 +++++++++++++
 .../manipulation/cases/MetadataSorterCase.as       |   16 +++++++++++++
 .../cases/NoTestsRemainExceptionCase.as            |   16 +++++++++++++
 .../runner/manipulation/cases/SorterCase.as        |   16 +++++++++++++
 .../runner/manipulation/mocks/BasicFilterMock.as   |   16 +++++++++++++
 .../runner/manipulation/mocks/FilterMock.as        |   16 +++++++++++++
 .../runner/manipulation/mocks/FilterableMock.as    |   16 +++++++++++++
 .../flexunit/runner/manipulation/mocks/SortMock.as |   16 +++++++++++++
 .../runner/manipulation/mocks/SortableMock.as      |   16 +++++++++++++
 .../org/flexunit/runner/mocks/DescriptionMock.as   |   16 +++++++++++++
 .../runner/mocks/DescriptionTestCaseMock.as        |   16 +++++++++++++
 .../src/org/flexunit/runner/mocks/RequestMock.as   |   16 +++++++++++++
 .../src/org/flexunit/runner/mocks/ResultMock.as    |   16 +++++++++++++
 .../src/org/flexunit/runner/mocks/RunnerMock.as    |   16 +++++++++++++
 .../runner/notification/NotificationSuite.as       |   16 +++++++++++++
 .../runner/notification/async/AsyncSuite.as        |   16 +++++++++++++
 .../async/cases/AsyncListenerWatcherCase.as        |   16 +++++++++++++
 .../async/cases/WaitingListenerCase.as             |   16 +++++++++++++
 .../notification/async/cases/XMLListenerCase.as    |   16 +++++++++++++
 .../runner/notification/cases/FailureCase.as       |   16 +++++++++++++
 .../runner/notification/cases/RunListenerCase.as   |   16 +++++++++++++
 .../runner/notification/cases/RunNotifierCase.as   |   16 +++++++++++++
 .../mocks/AsyncCompletionRunListenerMock.as        |   16 +++++++++++++
 .../mocks/AsyncStartupRunListenerMock.as           |   16 +++++++++++++
 .../runner/notification/mocks/FailureMock.as       |   16 +++++++++++++
 .../runner/notification/mocks/RunListenerMock.as   |   16 +++++++++++++
 .../runner/notification/mocks/RunNotifierMock.as   |   16 +++++++++++++
 .../src/org/flexunit/runners/RunnersSuite.as       |   16 +++++++++++++
 .../runners/cases/BlockFlexUnit4ClassRunnerCase.as |   16 +++++++++++++
 .../flexunit/runners/cases/ParameterizedCase.as    |   16 +++++++++++++
 .../org/flexunit/runners/cases/ParentRunnerCase.as |   16 +++++++++++++
 .../src/org/flexunit/runners/cases/RunRulesCase.as |   16 +++++++++++++
 .../src/org/flexunit/runners/cases/SuiteCase.as    |   16 +++++++++++++
 .../runners/cases/stub/AsynchronousRule.as         |   16 +++++++++++++
 .../flexunit/runners/cases/stub/SynchronousRule.as |   16 +++++++++++++
 .../flexunit/runners/mocks/RunnerLocatorMock.as    |   16 +++++++++++++
 .../src/org/flexunit/runners/model/ModelSuite.as   |   16 +++++++++++++
 .../runners/model/cases/FrameworkMethodCase.as     |   16 +++++++++++++
 .../runners/model/cases/RunnerBuilderBaseCase.as   |   16 +++++++++++++
 .../flexunit/runners/model/cases/TestClassCase.as  |   16 +++++++++++++
 .../runners/model/mocks/FrameworkMethodMock.as     |   16 +++++++++++++
 .../runners/model/mocks/RunnerBuilderMock.as       |   16 +++++++++++++
 .../flexunit/runners/model/mocks/TestClassMock.as  |   16 +++++++++++++
 FlexUnit4Test/src/org/flexunit/token/TokenSuite.as |   16 +++++++++++++
 .../token/cases/AsyncCoreStartupTokenCase.as       |   16 +++++++++++++
 .../org/flexunit/token/cases/AsyncTestTokenCase.as |   16 +++++++++++++
 .../org/flexunit/token/cases/ChildResultCase.as    |   16 +++++++++++++
 .../org/flexunit/token/mocks/AsyncTestTokenMock.as |   16 +++++++++++++
 .../src/org/flexunit/utils/ClassNameUtilCase.as    |   16 +++++++++++++
 FlexUnit4Test/src/org/flexunit/utils/UtilsSuite.as |   16 +++++++++++++
 .../src/org/fluint/FlexUnit4FluintSuite.as         |   16 +++++++++++++
 .../src/org/fluint/sequence/SequenceSuite.as       |   16 +++++++++++++
 .../sequence/cases/SequenceBindingWaiterCase.as    |   16 +++++++++++++
 .../fluint/sequence/cases/SequenceCallerCase.as    |   16 +++++++++++++
 .../org/fluint/sequence/cases/SequenceDelayCase.as |   16 +++++++++++++
 .../sequence/cases/SequenceEventDispatcherCase.as  |   16 +++++++++++++
 .../fluint/sequence/cases/SequenceRunnerCase.as    |   16 +++++++++++++
 .../fluint/sequence/cases/SequenceSetterCase.as    |   16 +++++++++++++
 .../fluint/sequence/cases/SequenceWaiterCase.as    |   16 +++++++++++++
 .../fluint/sequence/mocks/SequenceActionMock.as    |   16 +++++++++++++
 .../org/fluint/sequence/mocks/SequencePendMock.as  |   16 +++++++++++++
 .../fluint/sequence/mocks/SequenceRunnerMock.as    |   16 +++++++++++++
 .../org/fluint/sequence/mocks/SequenceStepMock.as  |   16 +++++++++++++
 .../fluint/uiImpersonation/UIImpersonationSuite.as |   16 +++++++++++++
 .../uiImpersonation/cases/TestEnvironmentCase.as   |   16 +++++++++++++
 .../uiImpersonation/cases/UIImpersonatorCase.as    |   16 +++++++++++++
 .../src/org/hamcrest/AbstractMatcherTestCase.as    |   16 +++++++++++++
 FlexUnit4Test/src/org/hamcrest/BaseMatcherTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/CustomMatcherTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/CustomTypeSafeMatcherTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/HamcrestMXMLSuite.as          |   16 +++++++++++++
 FlexUnit4Test/src/org/hamcrest/HamcrestSuite.as    |   16 +++++++++++++
 .../src/org/hamcrest/MatcherAssertTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/TypeSafeMatcherTest.as        |   16 +++++++++++++
 .../collection/AbstractArrayMatcherTestCase.as     |   16 +++++++++++++
 .../src/org/hamcrest/collection/EveryTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/collection/InArrayTest.as     |   16 +++++++++++++
 .../hamcrest/collection/IsArrayContainingTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/collection/IsArrayTest.as     |   16 +++++++++++++
 .../org/hamcrest/collection/IsArrayWithSizeTest.as |   16 +++++++++++++
 .../org/hamcrest/collection/SortedByFieldsTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/collection/SortedByTest.as    |   16 +++++++++++++
 FlexUnit4Test/src/org/hamcrest/core/AllOfTest.as   |   16 +++++++++++++
 FlexUnit4Test/src/org/hamcrest/core/AnyOfTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/core/CombinableTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/core/DescribedAsTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/core/EvaluateTest.as          |   16 +++++++++++++
 FlexUnit4Test/src/org/hamcrest/core/GivenTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/core/IsAnythingTest.as        |   16 +++++++++++++
 FlexUnit4Test/src/org/hamcrest/core/IsNotTest.as   |   16 +++++++++++++
 FlexUnit4Test/src/org/hamcrest/core/ThrowsTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/date/DateAfterTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/date/DateBeforeTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/date/DateBetweenTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/date/DateEqualTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/filter/FilterFunctionTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/AbstractMXMLMatcherTestCase.as   |   16 +++++++++++++
 .../hamcrest/mxml/BaseMXMLMatcherCompositeTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/BaseMXMLMatcherContainerTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/BaseMXMLMatcherTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/collection/ArrayTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/collection/ArrayWithSizeTest.as  |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/EmptyArrayTest.as |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/EveryItemTest.as  |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/HasItemTest.as    |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/HasItemsTest.as   |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/InArrayTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/AllOfTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/AnyOfTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/AnythingTest.as     |   16 +++++++++++++
 .../org/hamcrest/mxml/core/BaseMXMLMatcherTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/DescribedAsTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/core/HamcrestMxmlExample.mxml    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/NotTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateAfterTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateBeforeTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateBetweenTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateEqualToTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/number/BetweenTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/number/CloseToTest.as    |   16 +++++++++++++
 .../mxml/number/GreaterThanOrEqualToTest.as        |   16 +++++++++++++
 .../org/hamcrest/mxml/number/GreaterThanTest.as    |   16 +++++++++++++
 .../hamcrest/mxml/number/LessThanOrEqualToTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/number/LessThanTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/EqualToTest.as    |   16 +++++++++++++
 .../hamcrest/mxml/object/HasPropertyChainTest.as   |   16 +++++++++++++
 .../org/hamcrest/mxml/object/HasPropertyTest.as    |   16 +++++++++++++
 .../mxml/object/HasPropertyWithValueTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/InstanceOfTest.as |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/IsFalseTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/IsTrueTest.as     |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/NotNullTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/NullTest.as       |   16 +++++++++++++
 .../org/hamcrest/mxml/object/SameInstanceTest.as   |   16 +++++++++++++
 .../org/hamcrest/mxml/text/ContainsStringTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/text/EmptyStringTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/text/EndsWithTest.as     |   16 +++++++++++++
 .../src/org/hamcrest/mxml/text/StartsWithTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/number/BetweenTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/number/CloseToTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/number/GreaterThanTest.as     |   16 +++++++++++++
 .../src/org/hamcrest/number/IsNotANumberTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/number/IsNumberTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/number/LessThanTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/object/HasPropertiesTest.as   |   16 +++++++++++++
 .../org/hamcrest/object/HasPropertyChainTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/object/HasPropertyTest.as     |   16 +++++++++++++
 .../hamcrest/object/HasPropertyWithValueTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/object/IsEqualTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/object/IsFalseTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/object/IsInstanceOfTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/object/IsNullTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/object/IsSameTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/object/IsStrictlyEqualTest.as |   16 +++++++++++++
 .../src/org/hamcrest/object/IsTrueTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/text/EmptyStringTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/text/StringContainsTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/text/StringEndsWithTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/text/StringStartsWithTest.as  |   16 +++++++++++++
 .../hamcrest/validation/MatcherValidatorTest.as    |   16 +++++++++++++
 FlexUnit4Test/src/suite/cases/FlunitTest.as        |   16 +++++++++++++
 FlexUnit4Test/src/suite/cases/NestedAsync.as       |   16 +++++++++++++
 .../src/tests/flex/lang/reflect/ReflectionSuite.as |   16 +++++++++++++
 .../flex/lang/reflect/builders/BuilderSuite.as     |   16 +++++++++++++
 .../reflect/builders/MethodBuilderWithValidData.as |   16 +++++++++++++
 .../ConstructorParamsWithResolvedData.as           |   16 +++++++++++++
 .../ConstructorParamsWithUnresolvedData.as         |   16 +++++++++++++
 .../lang/reflect/constructor/ConstructorSuite.as   |   16 +++++++++++++
 .../constructor/ConstructorWithStubKlass.as        |   16 +++++++++++++
 .../constructor/helper/Constructor0ArgTestClass.as |   16 +++++++++++++
 .../constructor/helper/Constructor1ArgTestClass.as |   16 +++++++++++++
 .../constructor/helper/Constructor2ArgTestClass.as |   16 +++++++++++++
 .../constructor/helper/Constructor3ArgTestClass.as |   16 +++++++++++++
 .../helper/ConstructorUndefinedArgTestClass.as     |   16 +++++++++++++
 .../lang/reflect/constructor/helper/StubKlass.as   |   16 +++++++++++++
 .../flex/lang/reflect/field/FieldAsAProperty.as    |   16 +++++++++++++
 .../flex/lang/reflect/field/FieldAsAVariable.as    |   16 +++++++++++++
 .../tests/flex/lang/reflect/field/FieldSuite.as    |   16 +++++++++++++
 .../lang/reflect/field/FieldWithInvalidData.as     |   16 +++++++++++++
 .../flex/lang/reflect/field/FieldWithValidData.as  |   16 +++++++++++++
 .../tests/flex/lang/reflect/klass/KlassSuite.as    |   16 +++++++++++++
 .../lang/reflect/klass/KlassWithInvalidData.as     |   16 +++++++++++++
 .../flex/lang/reflect/klass/KlassWithValidData.as  |   16 +++++++++++++
 .../flex/lang/reflect/klass/helper/Ancestor1.as    |   16 +++++++++++++
 .../flex/lang/reflect/klass/helper/Ancestor2.as    |   16 +++++++++++++
 .../reflect/klass/helper/ClassForIntrospection.as  |   16 +++++++++++++
 .../lang/reflect/klass/helper/IFakeInterface.as    |   16 +++++++++++++
 .../flex/lang/reflect/metadata/MetaDataSuite.as    |   16 +++++++++++++
 .../AnnotationWithInvalidData.as                   |   16 +++++++++++++
 .../metaDataAnnotation/AnnotationWithValidData.as  |   16 +++++++++++++
 .../metaDataArgument/ArgumentWithInvalidData.as    |   16 +++++++++++++
 .../metaDataArgument/ArgumentWithValidData.as      |   16 +++++++++++++
 .../reflect/metadata/utils/MetaDataToolsCase.as    |   16 +++++++++++++
 .../tests/flex/lang/reflect/method/MethodSuite.as  |   16 +++++++++++++
 .../lang/reflect/method/MethodWithInvalidData.as   |   16 +++++++++++++
 .../lang/reflect/method/MethodWithValidData.as     |   16 +++++++++++++
 .../flexunit/assert/AssertionAndAssumptionSuite.as |   16 +++++++++++++
 .../tests/org/flexunit/assert/absolute/FailCase.as |   16 +++++++++++++
 .../assert/assertionsMade/AssertionsMadeCase.as    |   16 +++++++++++++
 .../org/flexunit/assert/assumption/AssumeCase.as   |   16 +++++++++++++
 .../flexunit/assert/assumption/AssumeThatCase.as   |   16 +++++++++++++
 .../org/flexunit/assert/bool/AssertFailNotTrue.as  |   16 +++++++++++++
 .../org/flexunit/assert/bool/AssertFailTrue.as     |   16 +++++++++++++
 .../flexunit/assert/bool/AssertFalseClassCase.as   |   16 +++++++++++++
 .../assert/bool/AssertFalseFunctionCase.as         |   16 +++++++++++++
 .../flexunit/assert/bool/AssertTrueClassCase.as    |   16 +++++++++++++
 .../flexunit/assert/bool/AssertTrueFunctionCase.as |   16 +++++++++++++
 .../assert/dynamicApp/DynamicAsserterCase.as       |   16 +++++++++++++
 .../assert/dynamicApp/helper/AsserterHelper.as     |   16 +++++++++++++
 .../assert/equals/AssertEqualsClassCase.as         |   16 +++++++++++++
 .../assert/equals/AssertEqualsFunctionCase.as      |   16 +++++++++++++
 .../flexunit/assert/equals/AssertFailNotEquals.as  |   16 +++++++++++++
 .../assert/equals/AssertFailNotStrictlyEqual.as    |   16 +++++++++++++
 .../assert/equals/AssertStrictlyEqualsClassCase.as |   16 +++++++++++++
 .../equals/AssertStrictlyEqualsFunctionCase.as     |   16 +++++++++++++
 .../flexunit/assert/error/AssertionErrorCase.as    |   16 +++++++++++++
 .../assert/nullHandling/AssertFailNotNull.as       |   16 +++++++++++++
 .../flexunit/assert/nullHandling/AssertFailNull.as |   16 +++++++++++++
 .../assert/nullHandling/AssertNotNullCase.as       |   16 +++++++++++++
 .../assert/nullHandling/AssertNullClassCase.as     |   16 +++++++++++++
 .../assert/nullHandling/AssertNullFunctionCase.as  |   16 +++++++++++++
 .../org/flexunit/assert/that/AssertThatCase.as     |   16 +++++++++++++
 .../tests/org/flexunit/async/AsyncHandlerCase.as   |   16 +++++++++++++
 .../tests/org/flexunit/async/AsyncLocatorCase.as   |   16 +++++++++++++
 .../flexunit/async/AsyncNativeTestResponderCase.as |   16 +++++++++++++
 .../src/tests/org/flexunit/async/AsyncSuite.as     |   16 +++++++++++++
 .../org/flexunit/async/AsyncTestResponderCase.as   |   16 +++++++++++++
 .../tests/org/flexunit/async/TestResponderCase.as  |   16 +++++++++++++
 .../src/tests/org/flexunit/events/EventsSuite.as   |   16 +++++++++++++
 .../org/flexunit/events/cases/AsyncEventCase.as    |   16 +++++++++++++
 .../events/cases/AsyncResponseEventCase.as         |   16 +++++++++++++
 .../flexunit/runner/util/DescriptionUtilTest.as    |   16 +++++++++++++
 .../flexunit/token/AsyncCoreStartupTokenCase.as    |   16 +++++++++++++
 .../tests/org/flexunit/token/AsyncTestTokenCase.as |   16 +++++++++++++
 .../tests/org/flexunit/token/ChildResultCase.as    |   16 +++++++++++++
 .../src/tests/org/flexunit/token/TokenSuite.as     |   16 +++++++++++++
 .../tests/org/flexunit/token/helper/PendingStub.as |   16 +++++++++++++
 .../tests/org/flexunit/utils/ClassNameUtilCase.as  |   16 +++++++++++++
 .../src/tests/org/flexunit/utils/UtilsSuite.as     |   16 +++++++++++++
 FlexUnit4Turnkey/.actionScriptProperties           |   16 +++++++++++++
 FlexUnit4Turnkey/.flexProperties                   |   16 +++++++++++++
 FlexUnit4Turnkey/.project                          |   16 +++++++++++++
 .../.settings/org.eclipse.core.resources.prefs     |   15 ++++++++++++
 FlexUnit4Turnkey/html-template/history/history.css |   16 +++++++++++++
 FlexUnit4Turnkey/html-template/history/history.js  |   16 +++++++++++++
 .../html-template/history/historyFrame.html        |   16 +++++++++++++
 FlexUnit4Turnkey/html-template/index.template.html |   16 +++++++++++++
 FlexUnit4Turnkey/src/FlexUnit4Turnkey.mxml         |   16 +++++++++++++
 .../src/flexUnitTests/TestingTester.as             |   16 +++++++++++++
 .../flexUnit1/framework/AllFrameworkTests.as       |   16 +++++++++++++
 .../flexUnit1/framework/AsynchronousTestCase.as    |   16 +++++++++++++
 .../framework/AsynchronousValueDispatcher.as       |   16 +++++++++++++
 .../flexUnit1/framework/ErrorTestCase.as           |   16 +++++++++++++
 .../flexUnit1/framework/FailureTestCase.as         |   16 +++++++++++++
 .../framework/SetupErrorTearDownTestCase.as        |   16 +++++++++++++
 .../flexUnit1/framework/SetupErrorTestCase.as      |   16 +++++++++++++
 .../flexUnit1/framework/SuccessTestCase.as         |   16 +++++++++++++
 .../flexUnit1/framework/TearDownErrorTestCase.as   |   16 +++++++++++++
 .../flexUnit1/framework/TearDownTestCase.as        |   16 +++++++++++++
 .../flexUnit1/framework/TestAssert.as              |   16 +++++++++++++
 .../flexUnit1/framework/TestAsynchronous.as        |   16 +++++++++++++
 .../flexUnit1/framework/TestEventfulTestCase.as    |   16 +++++++++++++
 .../flexUnit1/framework/TestTestCase.as            |   16 +++++++++++++
 .../flexUnit1/framework/TestTestListener.as        |   16 +++++++++++++
 .../flexUnit1/framework/ValueEvent.as              |   16 +++++++++++++
 .../suites/frameworkSuite/FlexUnit4Suite.as        |   16 +++++++++++++
 .../frameworkSuite/cases/TestASComponentUse.as     |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestAssert.as      |   16 +++++++++++++
 .../frameworkSuite/cases/TestAsynchronous.as       |   16 +++++++++++++
 .../cases/TestAsynchronousSetUpTearDown.as         |   16 +++++++++++++
 .../cases/TestBeforeAfterClassOrder.as             |   16 +++++++++++++
 .../cases/TestBeforeAfterClassOrderAsync.as        |   16 +++++++++++++
 .../frameworkSuite/cases/TestBeforeAfterOrder.as   |   16 +++++++++++++
 .../cases/TestBeforeAfterOrderAsync.as             |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestBindingUse.as  |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestIgnore.as      |   16 +++++++++++++
 .../frameworkSuite/cases/TestMXMLComponentUse.as   |   16 +++++++++++++
 .../suites/frameworkSuite/cases/TestMethodOrder.as |   16 +++++++++++++
 .../cases/TestSynchronousSetUpTearDown.as          |   16 +++++++++++++
 .../cases/mxml/SimpleMXMLLoginComponent.mxml       |   16 +++++++++++++
 .../frameworkSuite/cases/valueObject/Person.as     |   16 +++++++++++++
 .../frameworkSuite/theorySuite/TheorySuite.as      |   16 +++++++++++++
 .../src/flexUnitTests/hamcrest/HamcrestSuite.as    |   16 +++++++++++++
 FlexUnit4Turnkey/src/math/SimpleMath.as            |   16 +++++++++++++
 .../src/org/hamcrest/AbstractMatcherTestCase.as    |   16 +++++++++++++
 .../src/org/hamcrest/BaseMatcherTest.as            |   16 +++++++++++++
 .../src/org/hamcrest/CustomMatcherTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/CustomTypeSafeMatcherTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/HamcrestMXMLSuite.as          |   16 +++++++++++++
 FlexUnit4Turnkey/src/org/hamcrest/HamcrestSuite.as |   16 +++++++++++++
 .../src/org/hamcrest/MatcherAssertTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/TypeSafeMatcherTest.as        |   16 +++++++++++++
 .../collection/AbstractArrayMatcherTestCase.as     |   16 +++++++++++++
 .../src/org/hamcrest/collection/EveryTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/collection/InArrayTest.as     |   16 +++++++++++++
 .../hamcrest/collection/IsArrayContainingTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/collection/IsArrayTest.as     |   16 +++++++++++++
 .../org/hamcrest/collection/IsArrayWithSizeTest.as |   16 +++++++++++++
 .../org/hamcrest/collection/SortedByFieldsTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/collection/SortedByTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/core/AllOfTest.as             |   16 +++++++++++++
 .../src/org/hamcrest/core/AnyOfTest.as             |   16 +++++++++++++
 .../src/org/hamcrest/core/CombinableTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/core/DescribedAsTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/core/EvaluateTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/core/GivenTest.as             |   16 +++++++++++++
 .../src/org/hamcrest/core/IsAnythingTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/core/IsNotTest.as             |   16 +++++++++++++
 .../src/org/hamcrest/core/ThrowsTest.as            |   16 +++++++++++++
 .../src/org/hamcrest/date/DateAfterTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/date/DateBeforeTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/date/DateBetweenTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/date/DateEqualTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/filter/FilterFunctionTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/AbstractMXMLMatcherTestCase.as   |   16 +++++++++++++
 .../hamcrest/mxml/BaseMXMLMatcherCompositeTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/BaseMXMLMatcherContainerTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/BaseMXMLMatcherTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/collection/ArrayTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/collection/ArrayWithSizeTest.as  |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/EmptyArrayTest.as |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/EveryItemTest.as  |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/HasItemTest.as    |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/HasItemsTest.as   |   16 +++++++++++++
 .../org/hamcrest/mxml/collection/InArrayTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/AllOfTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/AnyOfTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/AnythingTest.as     |   16 +++++++++++++
 .../org/hamcrest/mxml/core/BaseMXMLMatcherTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/DescribedAsTest.as  |   16 +++++++++++++
 .../hamcrest/mxml/core/HamcrestMxmlExample.mxml    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/core/NotTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateAfterTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateBeforeTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateBetweenTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/date/DateEqualToTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/number/BetweenTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/number/CloseToTest.as    |   16 +++++++++++++
 .../mxml/number/GreaterThanOrEqualToTest.as        |   16 +++++++++++++
 .../org/hamcrest/mxml/number/GreaterThanTest.as    |   16 +++++++++++++
 .../hamcrest/mxml/number/LessThanOrEqualToTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/number/LessThanTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/EqualToTest.as    |   16 +++++++++++++
 .../hamcrest/mxml/object/HasPropertyChainTest.as   |   16 +++++++++++++
 .../org/hamcrest/mxml/object/HasPropertyTest.as    |   16 +++++++++++++
 .../mxml/object/HasPropertyWithValueTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/InstanceOfTest.as |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/IsFalseTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/IsTrueTest.as     |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/NotNullTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/mxml/object/NullTest.as       |   16 +++++++++++++
 .../org/hamcrest/mxml/object/SameInstanceTest.as   |   16 +++++++++++++
 .../org/hamcrest/mxml/text/ContainsStringTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/mxml/text/EmptyStringTest.as  |   16 +++++++++++++
 .../src/org/hamcrest/mxml/text/EndsWithTest.as     |   16 +++++++++++++
 .../src/org/hamcrest/mxml/text/StartsWithTest.as   |   16 +++++++++++++
 .../src/org/hamcrest/number/BetweenTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/number/CloseToTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/number/GreaterThanTest.as     |   16 +++++++++++++
 .../src/org/hamcrest/number/IsNotANumberTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/number/IsNumberTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/number/LessThanTest.as        |   16 +++++++++++++
 .../src/org/hamcrest/object/HasPropertiesTest.as   |   16 +++++++++++++
 .../org/hamcrest/object/HasPropertyChainTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/object/HasPropertyTest.as     |   16 +++++++++++++
 .../hamcrest/object/HasPropertyWithValueTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/object/IsEqualTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/object/IsFalseTest.as         |   16 +++++++++++++
 .../src/org/hamcrest/object/IsInstanceOfTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/object/IsNullTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/object/IsSameTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/object/IsStrictlyEqualTest.as |   16 +++++++++++++
 .../src/org/hamcrest/object/IsTrueTest.as          |   16 +++++++++++++
 .../src/org/hamcrest/text/EmptyStringTest.as       |   16 +++++++++++++
 .../src/org/hamcrest/text/StringContainsTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/text/StringEndsWithTest.as    |   16 +++++++++++++
 .../src/org/hamcrest/text/StringStartsWithTest.as  |   16 +++++++++++++
 .../hamcrest/validation/MatcherValidatorTest.as    |   16 +++++++++++++
 FlexUnit4Turnkey/src/suite/FlexUnitIn360.as        |   16 +++++++++++++
 FlexUnit4Turnkey/src/suite/cases/BasicMathTest.as  |   16 +++++++++++++
 FlexUnit4Turnkey/src/suite/cases/MyTheory.as       |   16 +++++++++++++
 FlexUnit4UIListener/.actionScriptProperties        |   16 +++++++++++++
 FlexUnit4UIListener/.flexLibProperties             |   16 +++++++++++++
 FlexUnit4UIListener/.project                       |   16 +++++++++++++
 .../.settings/org.eclipse.core.resources.prefs     |   15 ++++++++++++
 FlexUnit4UIListener/build.xml                      |   16 +++++++++++++
 FlexUnit4UIListener/flexLibProperties.xsl          |   16 +++++++++++++
 .../src/FlexUnit4UIRunner-manifest.xml             |   16 +++++++++++++
 FlexUnit4UIListener/src/css/FlexUnit.css           |   16 +++++++++++++
 FlexUnit4UIListener/src/css/FlexUnitComponents.css |   16 +++++++++++++
 FlexUnit4UIListener/src/design.xml                 |   16 +++++++++++++
 .../src/org/flexunit/flexui/TestRunnerBase.mxml    |   17 +++++++++++++-
 .../org/flexunit/flexui/controls/FlexUnitLabels.as |   16 +++++++++++++
 .../org/flexunit/flexui/controls/LeftHandSide.mxml |   16 +++++++++++++
 .../flexunit/flexui/controls/RightHandSide.mxml    |   16 +++++++++++++
 .../src/org/flexunit/flexui/controls/Title.mxml    |   16 +++++++++++++
 .../flexunit/flexui/controls/left/FilterArea.mxml  |   16 +++++++++++++
 .../flexui/controls/left/TestCasesTree.mxml        |   16 +++++++++++++
 .../flexui/controls/left/events/SearchBarEvent.as  |   16 +++++++++++++
 .../itemRenderer/TestResultTreeItemRenderer.as     |   16 +++++++++++++
 .../flexui/controls/right/RunningTests.mxml        |   16 +++++++++++++
 .../controls/right/SelectedTestCaseForm.mxml       |   16 +++++++++++++
 .../flexui/controls/right/StackTraceContainer.mxml |   16 +++++++++++++
 .../flexui/controls/right/TestsComplete.mxml       |   16 +++++++++++++
 .../org/flexunit/flexui/data/AbstractRowData.as    |   16 +++++++++++++
 .../org/flexunit/flexui/data/FilterTestsModel.as   |   16 +++++++++++++
 .../src/org/flexunit/flexui/data/TestCaseData.as   |   16 +++++++++++++
 .../flexunit/flexui/data/TestFunctionRowData.as    |   16 +++++++++++++
 .../flexui/data/TestRunnerBasePresentationModel.as |   16 +++++++++++++
 .../flexui/data/filter/AllTestFunctionStatus.as    |   16 +++++++++++++
 .../flexui/data/filter/EmptyTestFunctionStatus.as  |   16 +++++++++++++
 .../flexui/data/filter/ErrorTestFunctionStatus.as  |   16 +++++++++++++
 .../flexui/data/filter/ITestFunctionStatus.as      |   16 +++++++++++++
 .../data/filter/IgnoredTestFunctionStatus.as       |   16 +++++++++++++
 .../flexui/data/filter/TestfFunctionStatuses.as    |   16 +++++++++++++
 ...nnerBasePresentationModelProperyChangedEvent.as |   16 +++++++++++++
 .../flexunit/flexui/event/TestsCompleteEvent.as    |   16 +++++++++++++
 .../flexunit/flexui/patterns/AbstractPattern.as    |   16 +++++++++++++
 .../flexui/patterns/AssertContainedPattern.as      |   16 +++++++++++++
 .../flexui/patterns/AssertEqualsPattern.as         |   16 +++++++++++++
 .../flexui/patterns/AssertEventOcurredPattern.as   |   16 +++++++++++++
 .../flexunit/flexui/patterns/AssertMatchPattern.as |   16 +++++++++++++
 .../flexui/patterns/AssertNoMatchPattern.as        |   16 +++++++++++++
 .../flexui/patterns/AssertNotContainedPattern.as   |   16 +++++++++++++
 .../flexui/patterns/AssertNotNullPattern.as        |   16 +++++++++++++
 .../flexui/patterns/AssertNotUndefinedPattern.as   |   16 +++++++++++++
 .../flexunit/flexui/patterns/AssertNullPattern.as  |   16 +++++++++++++
 .../flexunit/flexui/patterns/AssertThatPattern.as  |   16 +++++++++++++
 .../flexui/patterns/AssertUndefinedPattern.as      |   16 +++++++++++++
 .../flexui/patterns/FailAsyncCallPattern.as        |   16 +++++++++++++
 .../flexunit/flexui/patterns/GreaterThanPattern.as |   16 +++++++++++++
 .../src/org/flexunit/listeners/UIListener.as       |   16 +++++++++++++
 .../test/flexunit/flexui/FlexUnitTestRunnerUI.mxml |   16 +++++++++++++
 version.properties                                 |   15 ++++++++++++
 932 files changed, 14905 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4/.actionScriptProperties b/FlexUnit4/.actionScriptProperties
index 5a85667..78faebc 100644
--- a/FlexUnit4/.actionScriptProperties
+++ b/FlexUnit4/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <actionScriptProperties analytics="false" mainApplicationPath="FlexUnit4.as" projectUUID="0b02d227-745f-4802-af78-1cf1b88d253c" version="6">
   <compiler additionalCompilerArguments="-keep-as3-metadata+=RunWith,BeforeClass,AfterClass,Before,After,Suite,Test,TestCase,Ignore,Theory,DataPoint,DataPoints,ArrayElementType,Rule,Parameters -define=CONFIG::useFlexClasses,true" autoRSLOrdering="true" copyDependentFiles="false" fteInMXComponents="false" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
     <compilerSourcePath/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/.flexLibProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4/.flexLibProperties b/FlexUnit4/.flexLibProperties
index 53caa7b..7af476b 100644
--- a/FlexUnit4/.flexLibProperties
+++ b/FlexUnit4/.flexLibProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <flexLibProperties includeAllClasses="false" version="1">
   <includeClasses>
     <classEntry path="flex.lang.reflect.Constructor"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4/.project b/FlexUnit4/.project
index 2ea6968..679d27a 100644
--- a/FlexUnit4/.project
+++ b/FlexUnit4/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4/build.xml b/FlexUnit4/build.xml
index 713a6a4..1017916 100644
--- a/FlexUnit4/build.xml
+++ b/FlexUnit4/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project name="FlexUnit4Core" basedir="." default="package">
    <import file="${basedir}/../utils.xml" />
    <property environment="env" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/flexLibProperties.xsl
----------------------------------------------------------------------
diff --git a/FlexUnit4/flexLibProperties.xsl b/FlexUnit4/flexLibProperties.xsl
index 8a5566d..8728e84 100644
--- a/FlexUnit4/flexLibProperties.xsl
+++ b/FlexUnit4/flexLibProperties.xsl
@@ -1,4 +1,20 @@
 <?xml version="1.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.
+-->
 <xsl:stylesheet	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 	<xsl:output indent="no" method="text" />
 	<xsl:template match="//includeClasses">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/link-report.xsl
----------------------------------------------------------------------
diff --git a/FlexUnit4/link-report.xsl b/FlexUnit4/link-report.xsl
index 18d9cf9..2a0a302 100644
--- a/FlexUnit4/link-report.xsl
+++ b/FlexUnit4/link-report.xsl
@@ -1,4 +1,20 @@
 <?xml version="1.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.
+-->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 	<xsl:output indent="no" omit-xml-declaration="yes" method="xml" />
 	<xsl:template match="/">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/Constructor.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Constructor.as b/FlexUnit4/src/flex/lang/reflect/Constructor.as
index 1d46ffa..52b7c4c 100644
--- a/FlexUnit4/src/flex/lang/reflect/Constructor.as
+++ b/FlexUnit4/src/flex/lang/reflect/Constructor.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect {
 	import flash.utils.describeType;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/Field.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Field.as b/FlexUnit4/src/flex/lang/reflect/Field.as
index cf4525d..e721cf6 100644
--- a/FlexUnit4/src/flex/lang/reflect/Field.as
+++ b/FlexUnit4/src/flex/lang/reflect/Field.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/Klass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Klass.as b/FlexUnit4/src/flex/lang/reflect/Klass.as
index e76e2a2..4a88dbd 100644
--- a/FlexUnit4/src/flex/lang/reflect/Klass.as
+++ b/FlexUnit4/src/flex/lang/reflect/Klass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect {
 	import flash.utils.Dictionary;
 	import flash.utils.describeType;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/Method.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/Method.as b/FlexUnit4/src/flex/lang/reflect/Method.as
index 7f2a82f..90148b7 100644
--- a/FlexUnit4/src/flex/lang/reflect/Method.as
+++ b/FlexUnit4/src/flex/lang/reflect/Method.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.metadata.MetaDataArgument;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as b/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
index dd6599d..0eef6a5 100644
--- a/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
+++ b/FlexUnit4/src/flex/lang/reflect/builders/FieldBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.builders {
 	import flex.lang.reflect.Field;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as b/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
index 0b49279..e579c8e 100644
--- a/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
+++ b/FlexUnit4/src/flex/lang/reflect/builders/MetaDataAnnotationBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.builders {
 	import flex.lang.reflect.metadata.MetaDataAnnotation;
 	import flex.lang.reflect.utils.MetadataTools;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as b/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
index 6418e02..3cf4c55 100644
--- a/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
+++ b/FlexUnit4/src/flex/lang/reflect/builders/MethodBuilder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.builders {
 	import flash.utils.Dictionary;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as b/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
index a16111b..6109242 100644
--- a/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
+++ b/FlexUnit4/src/flex/lang/reflect/cache/ClassDataCache.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.cache {
 	import flash.utils.Dictionary;
 	import flash.utils.describeType;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
----------------------------------------------------------------------
diff --git a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
index 3deef56..d5558e9 100644
--- a/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
+++ b/FlexUnit4/src/flex/lang/reflect/metadata/MetaDataAnnotation.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.metadata {
 
 	/**


[33/41] git commit: added LICENSE file

Posted by cz...@apache.org.
added LICENSE file


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/0abaaf70
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/0abaaf70
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/0abaaf70

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 0abaaf707f8009fad40a09eddeaaa388a44bda98
Parents: b27d47b
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sun May 19 22:49:08 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sun May 19 22:49:08 2013 +0800

----------------------------------------------------------------------
 LICENSE |  202 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 202 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/0abaaf70/LICENSE
----------------------------------------------------------------------
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..7a4a3ea
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,202 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed 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.
\ No newline at end of file


[24/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
index f6b7ed5..73349c7 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTearDownTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTearDownTestCase extends TearDownTestCase
   {
       public function SetupErrorTearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();
       }
   
       public function testSuccess():void
       {
          assertTrue( true );
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
index 53e77ee..c0025a9 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SetupErrorTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SetupErrorTestCase extends ErrorTestCase
   {
   
       public function SetupErrorTestCase(name : String)
       {
           super(name);
       }
   
       override public function setUp() : void
       {
           throw new Error();    
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
index d81f74d..2432081 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/SuccessTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class SuccessTestCase extends TestCase
   {
       public function SuccessTestCase(name : String):void
       {
           super(name);
       }
   
       public function testSuccess():void
       {
           expectedResult = true;
           
           assertTrue( expectedResult );
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
index 2b98218..d8dded3 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownErrorTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownErrorTestCase extends TearDownTestCase
   {
   
       public function TearDownErrorTestCase(name : String)
       {
           super(name);
       }
   
       public function testSuccess() : void
       {
          assertTrue( true );
       }
   
       override public function tearDown() : void
       {
           super.tearDown();
           throw new Error("tearDown");
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
index 4b52d56..6eb82fd 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TearDownTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TearDownTestCase extends ErrorTestCase
   {
   
       public function TearDownTestCase(name : String)
       {
           super(name);
       }
   
       override public function tearDown() : void
       {
           expectedResult = true;
       }
   
       public var expectedResult : Boolean = false;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
index 447ff89..97656b9 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAssert.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flexunit.framework.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
index 34ac69e..edc508e 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestAsynchronous.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flash.events.Event;
   import flash.events.TimerEvent;
   import flash.utils.Timer;
   
   import flexunit.framework.Assert;
   import flexunit.framework.TestCase;
   import flexunit.framework.TestResult;

   public class TestAsynchronous extends TestCase
   {
       public function TestAsynchronous(name : String = null)
       {
           super(name);
       }
   
       public function testInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dia
 log
       //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestInTimeError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testInTimeError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLatePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       //this test won't be run right now because the Error that is thrown propagates up and creates a dialog
     
   //and if the dialog isn't closed in time it screws up the timer in here.  however if you run it manaully and close
       //the dialog in time it should be ok
       public function STOPtestTooLateError() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTooLateError");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondInTimePass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testSecondInTimeFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondInTimeFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLatePass() : void
       {
           var test : TestCase = new As
 ynchronousTestCase("testSecondTooLatePass");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testSecondTooLateFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testSecondTooLateFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testTimeoutFunctionPass() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testTimeoutFunctionFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testTimeoutFunctionFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function testNotReallyAsynchronousPass() : void
       {
           var test : TestCa
 se = new AsynchronousTestCase("testNotReallyAsynchronousPass");
           var result : TestResult = test.run();
           initAsync(result, 1, 0, 0);
       }
   
       public function testNotReallyAsynchronousFail() : void
       {
           var test : TestCase = new AsynchronousTestCase("testNotReallyAsynchronousFail");
           var result : TestResult = test.run();
           initAsync(result, 1, 1, 0);
       }
   
       public function shouldBeRun(event : Event, passedData : Object) : void
       {
           var result : TestResult = passedData.result;
           var expectedRun : int = passedData.expectedRun;
           var expectedFail : int = passedData.expectedFail;
           var expectedError : int = passedData.expectedError;
   
           Assert.assertEquals("result.runCount() is not correct", expectedRun, result.runCount());
           Assert.assertEquals("result.failureCount() is not correct",expectedFail, result.failureCount());
           Assert.assertEquals
 ("result.errorCount() is not correct", expectedError, result.errorCount());
       }
   
       private function initAsync(result : TestResult, expectedRun : int, expectedFail : int, expectedError : int):void
       {
           var data : Object = new Object();
           data.result = result;
           data.expectedRun = expectedRun;
           data.expectedFail = expectedFail;
           data.expectedError = expectedError;
           var t : Timer = new Timer(1000, 1);
           var helper : Function = addAsync(shouldBeRun, 1500, data, function():void { fail('shouldBeRun did not fire')} );
           t.addEventListener( TimerEvent.TIMER, helper );
           t.start();
       }
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
index e2831a0..22a6526 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestEventfulTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
index 865e047..6b1cd59 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flexunit.framework.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
index f9bc3b2..ce2c034 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/TestTestListener.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class TestTestListener extends TestCase implements TestListener
   {
       public function TestTestListener(name : String = null)
       {
           super(name);
       }
   
   	public function addError( test : Test, e : Error ) : void
   	{
   		errorCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function addFailure( test : Test , e : AssertionFailedError ) : void
   	{
   		failureCount++;
   	}
   	
   //------------------------------------------------------------------------------
   
   	public function startTest( test : Test ) : void 
   	{
   		startCount++;
   	}
   
   //------------------------------------------------------------------------------
   
   	public function endTest( test : Test ) : void 
   	{
   		endCount++;
   	}
   	
   //----------------------------------------------------------------------
 --------
   
   	override public function setUp() : void
   	{
   		result = new TestResult();
   		result.addListener( TestListener(this) );
   	
   		startCount = 0;
   		endCount = 0;
   		failureCount = 0;
   		errorCount = 0;
   	}
   	
   //------------------------------------------------------------------------------
   	
   	public function testError():void 
   	{
   		var test : TestCase = new ErrorTestCase( "throwError" )
   		test.runWithResult( result );
   		Assert.assertEquals("error", 1, errorCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testFailure():void 
   	{
   		var test : TestCase = new FailureTestCase( "testFailure" )
   		test.runWithResult( result );
   		Assert.assertEquals("failure", 1, failureCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("er
 ror", 0, errorCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	public function testStartStop():void 
   	{
   		var test : TestCase = new SuccessTestCase( "testSuccess" )
   		test.runWithResult( result );
   		Assert.assertEquals("start", 1, startCount );
   		Assert.assertEquals("end", 1, endCount );
   		Assert.assertEquals("error", 0, errorCount);
   		Assert.assertEquals("failure", 0, failureCount);
   	}
   
   //------------------------------------------------------------------------------
   	
   	private var result : TestResult;
   	private var startCount : Number;
   	private var endCount : Number;
   	private var failureCount : Number;
   	private var errorCount : Number;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
index 7b7a81c..85ccdf2 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ValueEvent.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flash.events.Event;
   
   public class ValueEvent extends Event
   {
       public function ValueEvent(value : String)
       {
           super("value");
           this.value = value;
       }
   
       public var value : String;
   }
}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
index 783b3c6..abfac30 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite
 {
 	import flexUnitTests.flexUnit1.framework.AllFrameworkTests;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
index ec87f5b..92201f4 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
index d383e71..8180289 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
index 0a2e585..7776ea7 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases {
 	import flash.events.DataEvent;
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousFlex.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousFlex.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousFlex.as
index e9c4796..3042444 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousFlex.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousFlex.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
index b8f73cc..aa18b59 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
index dc8b47d..d168a1c 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
index a0a92e5..cbc084e 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritance.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritance.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritance.as
index a02e137..098fb8a 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritance.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritance.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseBaseClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseBaseClass.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseBaseClass.as
index 14b5e9d..3ac53ae 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseBaseClass.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseBaseClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	public class TestBeforeAfterInheritanceBaseBaseClass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseClass.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseClass.as
index 0f058e6..ed7b0d6 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseClass.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterInheritanceBaseClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	public class TestBeforeAfterInheritanceBaseClass extends TestBeforeAfterInheritanceBaseBaseClass

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
index 9eb5ca5..9e9d7f7 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
index 87a0912..57623c0 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
index 6d46e86..d44d6ad 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestDoubleMetaData.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestDoubleMetaData.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestDoubleMetaData.as
index cca6875..d038906 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestDoubleMetaData.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestDoubleMetaData.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
index 27ee830..3b01ba4 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
index a7b4862..caac6dd 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
index 164a742..b779b87 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized.as
index 7cbe6f6..4355ad3 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized2.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized2.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized2.as
index 7d4156b..8a7b15a 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized2.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized2.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized3.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized3.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized3.as
index ae72927..4a963d7 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized3.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestParameterized3.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
index 122be2e..9c6dffa 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/MySpecialResponder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/MySpecialResponder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/MySpecialResponder.as
index 690b6fe..c452c77 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/MySpecialResponder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/MySpecialResponder.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases.helper {
 	import flash.events.EventDispatcher;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/ParamDataExt.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/ParamDataExt.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/ParamDataExt.as
index 4e27f9d..bffc226 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/ParamDataExt.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/helper/ParamDataExt.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases.helper {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
index 1e42eda..e6e9df0 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/mxml/SimpleMXMLLoginComponent.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" title="Please Login" height="168">
 	<mx:Metadata>
 		[Event('loginRequested')]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
index 1a07105..bbc1592 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/valueObject/Person.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.cases.valueObject
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/ParamSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/ParamSuite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/ParamSuite.as
index 217186c..0316c88 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/ParamSuite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/ParamSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.parameterizedSuite.TestJUnitParameterizedBasicFunctionality;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedBasicFunctionality.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedBasicFunctionality.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedBasicFunctionality.as
index e97cbc5..ebb9d05 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedBasicFunctionality.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedBasicFunctionality.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedExternalLoader.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedExternalLoader.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedExternalLoader.as
index 3eeb951..7351e86 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedExternalLoader.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedExternalLoader.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedFuncVsArrayDataProvider.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedFuncVsArrayDataProvider.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedFuncVsArrayDataProvider.as
index 53e516c..fd73fa2 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedFuncVsArrayDataProvider.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedFuncVsArrayDataProvider.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithAsync.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithAsync.as
index 33c9a67..a8c66a9 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithAsync.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithBeforeAfter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithBeforeAfter.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithBeforeAfter.as
index 00b0c5f..15b6397 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithBeforeAfter.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestJUnitParameterizedWithBeforeAfter.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedBasicFunctionality.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedBasicFunctionality.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedBasicFunctionality.as
index 0045da8..954ed42 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedBasicFunctionality.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedBasicFunctionality.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedExternalLoader.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedExternalLoader.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedExternalLoader.as
index 87f4254..e488921 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedExternalLoader.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedExternalLoader.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexUnitTests.flexUnit4.suites.frameworkSuite.parameterizedSuite.helper.ParamDataHelper;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedFuncVsArrayDataProvider.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedFuncVsArrayDataProvider.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedFuncVsArrayDataProvider.as
index aa10d04..5af17a7 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedFuncVsArrayDataProvider.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedFuncVsArrayDataProvider.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithAsync.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithAsync.as
index f3220b7..fcb512b 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithAsync.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithAsync.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithBeforeAfter.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithBeforeAfter.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithBeforeAfter.as
index 6c094c3..ada6a7c 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithBeforeAfter.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/TestNGParameterizedWithBeforeAfter.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite
 {
 	import flexunit.framework.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/helper/ParamDataHelper.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/helper/ParamDataHelper.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/helper/ParamDataHelper.as
index 2289cbe..637f78e 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/helper/ParamDataHelper.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/parameterizedSuite/helper/ParamDataHelper.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit4.suites.frameworkSuite.parameterizedSuite.helper {
 	import flash.events.TimerEvent;
 	import flash.utils.Timer;


[22/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/ParameterizedAssertionErrorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/ParameterizedAssertionErrorCase.as b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/ParameterizedAssertionErrorCase.as
index 3f38843..e2203e1 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/ParameterizedAssertionErrorCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/cases/ParameterizedAssertionErrorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueExceptionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueExceptionCase.as b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueExceptionCase.as
index 276d26b..144aaea 100644
--- a/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueExceptionCase.as
+++ b/FlexUnit4Test/src/org/flexunit/experimental/theories/internals/error/CouldNotGenerateValueExceptionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.experimental.theories.internals.error
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/InternalsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/InternalsSuite.as b/FlexUnit4Test/src/org/flexunit/internals/InternalsSuite.as
index 18eb635..7ad4879 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/InternalsSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/InternalsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals
 {
 	import org.flexunit.internals.builders.InternalBuildersSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/InternalBuildersSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/InternalBuildersSuite.as b/FlexUnit4Test/src/org/flexunit/internals/builders/InternalBuildersSuite.as
index 211f8ae..4b22a53 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/InternalBuildersSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/InternalBuildersSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders
 {
 	import org.flexunit.internals.builders.cases.AllDefaultPossibilitiesBuilderASCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitesBuilderFluintCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitesBuilderFluintCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitesBuilderFluintCase.as
index ed9957f..c40ca3a 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitesBuilderFluintCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitesBuilderFluintCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderASCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderASCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderASCase.as
index de4d77f..a120f42 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderASCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderASCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderFlexCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderFlexCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderFlexCase.as
index 131dadf..b2c6ffe 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderFlexCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/AllDefaultPossibilitiesBuilderFlexCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import net.digitalprimates.fluint.assertion.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit1BuilderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit1BuilderCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit1BuilderCase.as
index 8eae832..d8f16b0 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit1BuilderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit1BuilderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit4BuilderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit4BuilderCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit4BuilderCase.as
index d195cb6..6bee176 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit4BuilderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/FlexUnit4BuilderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/Fluint1BuilderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/Fluint1BuilderCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/Fluint1BuilderCase.as
index fdd6bcc..98b94c9 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/Fluint1BuilderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/Fluint1BuilderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import flex.lang.reflect.Klass;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredBuilderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredBuilderCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredBuilderCase.as
index c3047c0..266e0fe 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredBuilderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredBuilderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredClassRunnerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredClassRunnerCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredClassRunnerCase.as
index 0883de7..5f438b9 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredClassRunnerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/IgnoredClassRunnerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/MetaDataBuilderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/MetaDataBuilderCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/MetaDataBuilderCase.as
index ef402eb..b022a1f 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/MetaDataBuilderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/MetaDataBuilderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/NullBuilderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/NullBuilderCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/NullBuilderCase.as
index 76e048c..1abebc0 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/NullBuilderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/NullBuilderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	public class NullBuilderCase

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/SuiteMethodBuilderCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/SuiteMethodBuilderCase.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/SuiteMethodBuilderCase.as
index c281669..c18385a 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/SuiteMethodBuilderCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/SuiteMethodBuilderCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/BaseClassHasRunWith.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/BaseClassHasRunWith.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/BaseClassHasRunWith.as
index 5361d0c..b6367e1 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/BaseClassHasRunWith.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/BaseClassHasRunWith.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases.helper {
 	[Suite]
 	[RunWith("org.flexunit.runners.Suite")]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/ChildClassNoRunWith.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/ChildClassNoRunWith.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/ChildClassNoRunWith.as
index bb842af..ce9b9c1 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/ChildClassNoRunWith.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/ChildClassNoRunWith.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases.helper {
 	public class ChildClassNoRunWith extends BaseClassHasRunWith {
 		public var simpleTest:SingleTestStub;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/SingleTestStub.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/SingleTestStub.as b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/SingleTestStub.as
index 7c9e5ff..4bd8724 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/SingleTestStub.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/cases/helper/SingleTestStub.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.cases.helper
 {
 	public class SingleTestStub

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit1Class.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit1Class.as b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit1Class.as
index 7243300..d146007 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit1Class.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit1Class.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.definitions
 {
 	import flexunit.framework.TestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4Class.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4Class.as b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4Class.as
index b14321e..5bca1da 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4Class.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4Class.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.definitions
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClass.as b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClass.as
index 63abf34..2c35aca 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClass.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.definitions
 {
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClassFail.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClassFail.as b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClassFail.as
index bcf08d7..3f1b9b7 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClassFail.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/FlexUnit4SuiteClassFail.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.definitions
 {
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Class.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Class.as b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Class.as
index 8da21b8..8c6f00c 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Class.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Class.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.definitions
 {
 	import net.digitalprimates.fluint.tests.TestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Suite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Suite.as b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Suite.as
index 80f8009..5b28a08 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Suite.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/Fluint1Suite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.definitions
 {
 	import net.digitalprimates.fluint.tests.TestSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/IgnoredClass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/IgnoredClass.as b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/IgnoredClass.as
index 1615280..5e27cd6 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/IgnoredClass.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/builders/definitions/IgnoredClass.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders.definitions
 {
 	[Ignore]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/cases/ArrayComparisonFauilureCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/cases/ArrayComparisonFauilureCase.as b/FlexUnit4Test/src/org/flexunit/internals/cases/ArrayComparisonFauilureCase.as
index dfce9fe..9391ceb 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/cases/ArrayComparisonFauilureCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/cases/ArrayComparisonFauilureCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.cases
 {
 	public class ArrayComparisonFauilureCase

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/cases/TextListenerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/cases/TextListenerCase.as b/FlexUnit4Test/src/org/flexunit/internals/cases/TextListenerCase.as
index b598f32..7c0c8b2 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/cases/TextListenerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/cases/TextListenerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/cases/TraceListenerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/cases/TraceListenerCase.as b/FlexUnit4Test/src/org/flexunit/internals/cases/TraceListenerCase.as
index 8642b17..c0e0b35 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/cases/TraceListenerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/cases/TraceListenerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.cases
 {
 	import org.flexunit.AssertionError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/events/cases/ExecutionCompleteEventCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/events/cases/ExecutionCompleteEventCase.as b/FlexUnit4Test/src/org/flexunit/internals/events/cases/ExecutionCompleteEventCase.as
index f921b95..3ff9055 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/events/cases/ExecutionCompleteEventCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/events/cases/ExecutionCompleteEventCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.events.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/mocks/LoggerMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/mocks/LoggerMock.as b/FlexUnit4Test/src/org/flexunit/internals/mocks/LoggerMock.as
index e8600f4..e19017d 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/mocks/LoggerMock.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/mocks/LoggerMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/requests/InternalRequestsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/requests/InternalRequestsSuite.as b/FlexUnit4Test/src/org/flexunit/internals/requests/InternalRequestsSuite.as
index 346d5df..4f90cb1 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/requests/InternalRequestsSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/requests/InternalRequestsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests
 {
 	import org.flexunit.internals.requests.cases.ClassRequestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/requests/cases/ClassRequestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/requests/cases/ClassRequestCase.as b/FlexUnit4Test/src/org/flexunit/internals/requests/cases/ClassRequestCase.as
index 53f3f98..0f5afe3 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/requests/cases/ClassRequestCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/requests/cases/ClassRequestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/requests/cases/FilterRequestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/requests/cases/FilterRequestCase.as b/FlexUnit4Test/src/org/flexunit/internals/requests/cases/FilterRequestCase.as
index 58b255a..a778846 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/requests/cases/FilterRequestCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/requests/cases/FilterRequestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/requests/cases/SortingRequestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/requests/cases/SortingRequestCase.as b/FlexUnit4Test/src/org/flexunit/internals/requests/cases/SortingRequestCase.as
index 66d2738..ad03347 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/requests/cases/SortingRequestCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/requests/cases/SortingRequestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.requests.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/InternalRunnersSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/InternalRunnersSuite.as b/FlexUnit4Test/src/org/flexunit/internals/runners/InternalRunnersSuite.as
index 9a23a58..64299f6 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/InternalRunnersSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/InternalRunnersSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners
 {
 	import org.flexunit.internals.runners.cases.ChildRunnerSequencerCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ChildRunnerSequencerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ChildRunnerSequencerCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ChildRunnerSequencerCase.as
index becbb2d..451429d 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ChildRunnerSequencerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ChildRunnerSequencerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ErrorReportingRunnerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ErrorReportingRunnerCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ErrorReportingRunnerCase.as
index 8069176..fdde61e 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ErrorReportingRunnerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/ErrorReportingRunnerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.cases
 {
 	import flash.utils.getQualifiedClassName;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/cases/FailureBeforeCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/FailureBeforeCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/FailureBeforeCase.as
index b782b2e..e5d9105 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/FailureBeforeCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/FailureBeforeCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.cases
 {
 	public class FailureBeforeCase

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/cases/InitializationErrorCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/InitializationErrorCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/InitializationErrorCase.as
index 8617672..e772dd2 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/cases/InitializationErrorCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/cases/InitializationErrorCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/model/InternalRunnersModelSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/model/InternalRunnersModelSuite.as b/FlexUnit4Test/src/org/flexunit/internals/runners/model/InternalRunnersModelSuite.as
index 3a6fec8..5b9df97 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/model/InternalRunnersModelSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/model/InternalRunnersModelSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.model
 {
 	import org.flexunit.internals.runners.model.cases.EachTestNotifierCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/EachTestNotifierCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/EachTestNotifierCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/EachTestNotifierCase.as
index 072ad65..827a550 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/EachTestNotifierCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/EachTestNotifierCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.model.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/MultipleFailureExceptionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/MultipleFailureExceptionCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/MultipleFailureExceptionCase.as
index 9b735f4..1d732a9 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/MultipleFailureExceptionCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/model/cases/MultipleFailureExceptionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.model.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/InternalRunnersStatmentsSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/InternalRunnersStatmentsSuite.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/InternalRunnersStatmentsSuite.as
index b24413e..5438eab 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/InternalRunnersStatmentsSuite.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/InternalRunnersStatmentsSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements
 {
 	import org.flexunit.internals.runners.statements.cases.AsyncStatementBaseCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/AsyncStatementBaseCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/AsyncStatementBaseCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/AsyncStatementBaseCase.as
index 76ff6cd..8868e9f 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/AsyncStatementBaseCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/AsyncStatementBaseCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectAsyncASCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectAsyncASCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectAsyncASCase.as
index c799473..efbc2f6 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectAsyncASCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectAsyncASCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import flash.events.DataEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectExceptionCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectExceptionCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectExceptionCase.as
index 342c210..067af6a 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectExceptionCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/ExpectExceptionCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailCase.as
index d65f65a..01da87f 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailOnTimeoutCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailOnTimeoutCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailOnTimeoutCase.as
index 46f25ea..a7811f0 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailOnTimeoutCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/FailOnTimeoutCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/InvokeMethodCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/InvokeMethodCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/InvokeMethodCase.as
index 460abf8..cb2a926 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/InvokeMethodCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/InvokeMethodCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersCase.as
index 9026de1..7d69aa2 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersClassCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersClassCase.as
index 6b9dfe2..7c5a552 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersClassCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunAftersClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesCase.as
index 5be236f..d0617ed 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesClassCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesClassCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesClassCase.as
index 79afe3c..8911528 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesClassCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/RunBeforesClassCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/SequencerWithDecorationCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/SequencerWithDecorationCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/SequencerWithDecorationCase.as
index c3e0972..0a74870 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/SequencerWithDecorationCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/SequencerWithDecorationCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.internals.runners.statements.SequencerWithDecoration;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StackAndFrameManagementCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StackAndFrameManagementCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StackAndFrameManagementCase.as
index 7248ed6..0fe662f 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StackAndFrameManagementCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StackAndFrameManagementCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StatementSequencerCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StatementSequencerCase.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StatementSequencerCase.as
index c311ad5..652130f 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StatementSequencerCase.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/cases/StatementSequencerCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncHandlingStatementMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncHandlingStatementMock.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncHandlingStatementMock.as
index 39ce93f..61e6f28 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncHandlingStatementMock.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncHandlingStatementMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.mock
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncStatementMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncStatementMock.as b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncStatementMock.as
index 0219590..740b06d 100644
--- a/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncStatementMock.as
+++ b/FlexUnit4Test/src/org/flexunit/internals/runners/statements/mock/AsyncStatementMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners.statements.mock
 {
 	import com.anywebcam.mock.Mock;


[35/41] git commit: removed Swc's from FlexUnit4, FlexUnit4FluintExtensions and FlexUnit4Test and added download.xml ant file to automatically download those dependencies.

Posted by cz...@apache.org.
removed Swc's from FlexUnit4, FlexUnit4FluintExtensions and FlexUnit4Test and added download.xml ant file to automatically download those dependencies.


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/81c486b9
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/81c486b9
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/81c486b9

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 81c486b932203f6ae5046e8b2c1beb9205a9bd7b
Parents: 8d0f8f2
Author: cyrill.zadra <cy...@gmail.com>
Authored: Tue May 21 23:59:13 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Tue May 21 23:59:13 2013 +0800

----------------------------------------------------------------------
 FlexUnit4/.gitignore                          |    1 +
 FlexUnit4/build.xml                           |    6 +-
 FlexUnit4/downloads.xml                       |  212 +++++++++++++++++
 FlexUnit4/libs/FlexUnit1Lib.swc               |  Bin 872228 -> 0 bytes
 FlexUnit4/libs/hamcrest-as3-flex-1.1.3.swc    |  Bin 51276 -> 0 bytes
 FlexUnit4AntTasks/.gitignore                  |    1 +
 FlexUnit4FluintExtensions/build.xml           |    6 +-
 FlexUnit4FluintExtensions/downloads.xml       |  120 ++++++++++
 FlexUnit4FluintExtensions/libs/fluint-1_2.swc |  Bin 63937 -> 0 bytes
 FlexUnit4Test/.gitignore                      |    1 +
 FlexUnit4Test/build.xml                       |    6 +-
 FlexUnit4Test/downloads.xml                   |  239 ++++++++++++++++++++
 FlexUnit4Test/libs/FlexUnit1Lib.swc           |  Bin 872228 -> 0 bytes
 FlexUnit4Test/libs/fluint-1_2.swc             |  Bin 63937 -> 0 bytes
 FlexUnit4Test/libs/hamcrest-as3-1.1.0.swc     |  Bin 50105 -> 0 bytes
 15 files changed, 589 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4/.gitignore
----------------------------------------------------------------------
diff --git a/FlexUnit4/.gitignore b/FlexUnit4/.gitignore
index 231419b..ec86ac9 100644
--- a/FlexUnit4/.gitignore
+++ b/FlexUnit4/.gitignore
@@ -1 +1,2 @@
 /.actionScriptProperties
+/in/

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4/build.xml b/FlexUnit4/build.xml
index 1017916..3d382c8 100644
--- a/FlexUnit4/build.xml
+++ b/FlexUnit4/build.xml
@@ -91,8 +91,12 @@
       <!-- Create properties file from .flexLibProperties -->
       <xslt in="${basedir}/.flexLibProperties" out="${bin.loc}/flexLib.properties" style="${basedir}/flexLibProperties.xsl" />
    </target>
+	
+    <target name="prebuild">
+		<ant antfile="${basedir}/downloads.xml" dir="${basedir}" />
+    </target>
 
-   <target name="compile" depends="init, compile-flex,compile-as3,as3-linker-check" />
+   <target name="compile" depends="init, prebuild, compile-flex,compile-as3,as3-linker-check" />
    
    <target name="compile-flex">
       <!-- Pull in class file list for compc -->

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4/downloads.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4/downloads.xml b/FlexUnit4/downloads.xml
new file mode 100644
index 0000000..3086902
--- /dev/null
+++ b/FlexUnit4/downloads.xml
@@ -0,0 +1,212 @@
+<?xml version="1.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.
+
+-->
+
+<project name="downloads" default="main" basedir=".">
+	
+    <pathconvert property="compiler.tests" dirsep="/">
+        <path location="${basedir}"/>
+    </pathconvert>
+
+    <property name="lib.dir" value="${compiler.tests}/libs"/>
+    
+	<property name="download.dir" value="${compiler.tests}/in"/>
+    
+	<!-- 
+	   Notes:
+	       For Apache, the SWCs must be removed from the repository.
+	       
+	       Licenses:
+            flexunit1lib ()  - ?
+            harmcrest (1.1.3)  - 
+	-->
+		     
+    <!-- 
+        Because the downloads requires a network connection and the JARs don't change very often, 
+        they are each downloaded only if they don't already exist. 
+    -->
+    
+	<target name="main" depends="prepare, flexunit1lib-swc, hamcrest-swc"
+		    description="Downloads all the required thirdparty SWCs"/>
+
+    <target name="prepare" >
+        <mkdir dir="${lib.dir}" />
+    </target>
+    
+    <!--
+		Cleanup
+	-->
+	
+    <target name="clean" 
+            description="Removes thirdparty downloads.">
+        <delete includeEmptyDirs="true" failonerror="false">
+            <fileset dir="${download.dir}">
+                <include name="FlexUnit1Lib*/**"/>
+            </fileset>
+        </delete>
+    </target>
+    
+    <!--
+	    Download thirdparty SWCs    
+	-->
+
+    <!--
+        Download a swc file and optionally verify the checksum.
+        If the checksum fails, this script fails.
+        
+        Params are:
+            srcUrl
+            srcSwcFile
+            destSwcFile
+            [md5]
+    -->
+    <target name="download-swc" 
+            description="Downloads swc, and optionally verifies checksum.">                    
+        <get src="${srcUrl}/${srcSwcFile}" dest="${destSwcFile}"/>
+        <checksum file="${destSwcFile}" algorithm="MD5" property="${we.failed}"/>
+        <antcall target="fail-with-message">
+            <param name="message" value="Checksum mismatch for ${destSwcFile}"/>
+        </antcall>
+    </target>
+	
+    <!--
+        Download a zip or gz file, extracts the jar file, and optionally copies the jar
+        file to a different location and optinally verifies the checksum.  
+        If the checksum fails, this script fails.
+
+        Params are:
+            srcUrl
+            zipFile - a .gz file for untar with gzip, else unzip
+            [md5]
+            [srcJarPath] - both src and dest required for the copy
+            [destJarFile]
+
+        Note: This is purposely coded without <if><else><then> so that a dependency on
+        ant-contrib.jar isn't required.        
+    -->
+	
+    <target name="download-zip"
+        description="Downloads tar/zip, and optionally verifies checksum and copies extracted swc.">                
+        
+        <mkdir dir="${download.dir}"/>        
+    	
+        <get src="${srcUrl}/${zipFile}" dest="${download.dir}/${zipFile}"/>
+
+        <condition property="zip.compressed">
+            <matches string="${zipFile}" pattern="^*.zip$"/>      
+        </condition>
+ 
+        <antcall target="untar-file"/>
+        <antcall target="unzip-file"/>
+        
+        <antcall target="check-sum">
+            <param name="message" value="Checksum mismatch for ${download.dir}/${zipFile}"/>
+        </antcall>
+        
+        <condition property="destination.known">
+            <and>
+                <isset property="srcJarPath"/>
+                <isset property="destJarFile"/>
+            </and>
+        </condition> 
+        <antcall target="copy-downloaded-swc"/>
+     </target> 
+	
+    <target name="untar-file" unless="zip.compressed" description="Untars zipFile">
+        <untar src="${download.dir}/${zipFile}" dest="${download.dir}/temp" compression="gzip"/> 
+    </target>
+    
+    <target name="unzip-file" if="zip.compressed" description="Unzips zipFile">
+        <unzip src="${download.dir}/${zipFile}" dest="${download.dir}/temp"/>    
+    </target>
+    
+    <target name="check-sum" if="md5" 
+        description="Verifies MD5 checksum, and fails if checksum doesn't match">
+        
+        <checksum file="${download.dir}/${zipFile}" algorithm="MD5" property="${we.failed}"/>
+        <antcall target="fail-with-message">
+            <param name="message" value="${message}"/>
+        </antcall>
+    </target>
+	
+    <target name="copy-downloaded-swc" if="destination.known">
+        <mkdir dir="${lib.dir}"/>
+        <copy file="${download.dir}/temp/${srcJarPath}" toFile="${destJarFile}" verbose="true"/>
+    </target>
+	
+    <target name="fail-with-message" if="we.failed" 
+            description="Conditionally fails with the specified message">                
+        <fail message="${message}"/>
+    </target>
+        
+    <!--
+        flexunit1lib
+    -->
+    
+    <target name="flexunit1lib-swc-check" description="Checks if flexunit1lib swc exists.">
+    	<condition property="flexunit1lib.swc.exists">
+    	    <and>
+    	        <available file="${lib.dir}/FlexUnit1Lib.swc"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="flexunit1lib-swc" depends="flexunit1lib-swc-check" unless="flexunit1lib.swc.exists"
+            description="Copies the flexunit1lib swc to the lib directory.">
+        <echo message="Obtaining libs/FlexUnit1Lib.swc"/>
+        <antcall target="flexunit1lib-download-swc"/>
+    </target>
+    
+    <target name="flexunit1lib-download-swc" depends="flexunit1lib-swc-check" unless="flexunit1lib.swc.exists"
+            description="Downloads the flexunit1lib swc.">
+        <antcall target="download-swc">
+            <param name="srcUrl" value="https://fluint.googlecode.com/svn-history/r268/branches/skunkworks/flexUnit4/FlexUnit4/libs"/>
+            <param name="srcSwcFile" value="FlexUnit1Lib.swc"/>
+            <param name="destSwcFile" value="${lib.dir}/FlexUnit1Lib.swc"/>
+        </antcall>
+    </target>
+	
+	
+	   <!--
+	        hamcrest-as3
+	        
+	    -->	    
+	    <target name="hamcrest-swc" depends="hamcrest-swc-check" 
+	        unless="hamcrest.swc.exists" 
+	        description="Downloads and copies hamcrest to the lib directory.">
+	        <echo message="Obtaining lib/hamcrest-as3-flex-1.1.3.swc"/>
+	        <antcall target="download-zip">
+	          <param name="srcUrl" value="http://cloud.github.com/downloads/drewbourne/hamcrest-as3"/>
+	          <param name="zipFile" value="hamcrest-as3-flex-1.1.3.zip"/>
+	          <param name="srcJarPath" value="hamcrest-as3-flex-1.1.3/hamcrest-as3-flex-1.1.3.swc"/>
+	          <param name="md5" value="b73fe1bb5f443993adcf8b274f6a48b2"/>
+	          <param name="destJarFile" value="${lib.dir}/hamcrest-as3-flex-1.1.3.swc"/>
+	        </antcall>
+	        <delete dir="${download.dir}/temp/hamcrest-as3-flex-1.1.3"/>
+	    </target>
+	    
+	    <target name="hamcrest-swc-check" description="Checks if harmcrest swc exists.">
+	    	<condition property="hamcrest.swc.exists">
+	    	    <and>
+	    	        <available file="${lib.dir}/hamcrest-as3-flex-1.1.3.swc"/>
+	    	    </and>
+	        </condition>
+	    </target>
+	
+</project>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4/libs/FlexUnit1Lib.swc
----------------------------------------------------------------------
diff --git a/FlexUnit4/libs/FlexUnit1Lib.swc b/FlexUnit4/libs/FlexUnit1Lib.swc
deleted file mode 100644
index 6c46851..0000000
Binary files a/FlexUnit4/libs/FlexUnit1Lib.swc and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4/libs/hamcrest-as3-flex-1.1.3.swc
----------------------------------------------------------------------
diff --git a/FlexUnit4/libs/hamcrest-as3-flex-1.1.3.swc b/FlexUnit4/libs/hamcrest-as3-flex-1.1.3.swc
deleted file mode 100644
index 217d0c6..0000000
Binary files a/FlexUnit4/libs/hamcrest-as3-flex-1.1.3.swc and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4AntTasks/.gitignore
----------------------------------------------------------------------
diff --git a/FlexUnit4AntTasks/.gitignore b/FlexUnit4AntTasks/.gitignore
new file mode 100644
index 0000000..12c18d4
--- /dev/null
+++ b/FlexUnit4AntTasks/.gitignore
@@ -0,0 +1 @@
+/lib/

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4FluintExtensions/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/build.xml b/FlexUnit4FluintExtensions/build.xml
index f22dfc5..b3b752b 100644
--- a/FlexUnit4FluintExtensions/build.xml
+++ b/FlexUnit4FluintExtensions/build.xml
@@ -63,8 +63,12 @@
          </fileset>
       </copy>
    </target>
+	
+   <target name="prebuild">
+		<ant antfile="${basedir}/downloads.xml" dir="${basedir}" />
+    </target>
 
-   <target name="compile" depends="init">
+   <target name="compile" depends="init, prebuild">
       <compc output="${bin.loc}/${build.finalName}.${build.packaging}">
          <include-sources dir="${src.loc}" includes="*" append="true" />
          <source-path path-element="${src.loc}" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4FluintExtensions/downloads.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/downloads.xml b/FlexUnit4FluintExtensions/downloads.xml
new file mode 100644
index 0000000..4fc3d84
--- /dev/null
+++ b/FlexUnit4FluintExtensions/downloads.xml
@@ -0,0 +1,120 @@
+<?xml version="1.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.
+
+-->
+
+<project name="downloads" default="main" basedir=".">
+	
+    <pathconvert property="compiler.tests" dirsep="/">
+        <path location="${basedir}"/>
+    </pathconvert>
+
+    <property name="lib.dir" value="${compiler.tests}/libs"/>
+    
+	<property name="download.dir" value="${compiler.tests}/in"/>
+    
+	<!-- 
+	   Notes:
+	       For Apache, the SWCs must be removed from the repository.
+	       
+	       Licenses:
+            fluint (1.2)  - MIT
+	-->
+		     
+    <!-- 
+        Because the downloads requires a network connection and the JARs don't change very often, 
+        they are each downloaded only if they don't already exist. 
+    -->
+    
+	<target name="main" depends="prepare, fluint-swc"
+		    description="Downloads all the required thirdparty SWCs"/>
+
+    <target name="prepare" >
+        <mkdir dir="${lib.dir}" />
+    </target>
+    
+    <!--
+		Cleanup
+	-->
+	
+    <target name="clean" 
+            description="Removes thirdparty downloads.">
+        <delete includeEmptyDirs="true" failonerror="false">
+            <fileset dir="${download.dir}">
+                <include name="fluint*/**"/>
+            	<include name="flexunit/*/**"/>
+            </fileset>
+        </delete>
+    </target>
+    
+    <!--
+	    Download thirdparty JARs    
+	-->
+
+    <!--
+        Download a swc file and optionally verify the checksum.
+        If the checksum fails, this script fails.
+        
+        Params are:
+            srcUrl
+            srcSwcFile
+            destSwcFile
+            [md5]
+    -->
+    <target name="download-swc" 
+            description="Downloads swc, and optionally verifies checksum.">                    
+        <get src="${srcUrl}/${srcSwcFile}" dest="${destSwcFile}"/>
+        <checksum file="${destSwcFile}" algorithm="MD5" property="${we.failed}"/>
+        <antcall target="fail-with-message">
+            <param name="message" value="Checksum mismatch for ${destSwcFile}"/>
+        </antcall>
+    </target>
+
+    <target name="fail-with-message" if="we.failed" 
+            description="Conditionally fails with the specified message">                
+        <fail message="${message}"/>
+    </target>
+        
+    <!--
+        fluint
+    -->
+    
+    <target name="fluint-swc-check" description="Checks if fluint swc exists.">
+    	<condition property="fluint.swc.exists">
+    	    <and>
+    	        <available file="${lib.dir}/fluint-1_2.swc"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="fluint-swc" depends="fluint-swc-check" unless="fluint.swc.exists"
+            description="Copies the fluint swc to the lib directory.">
+        <echo message="Obtaining libs/fluint-1_2.swc"/>
+        <antcall target="fluint-download-swc"/>
+    </target>
+    
+    <target name="fluint-download-swc" depends="fluint-swc-check" unless="fluint.swc.exists"
+            description="Downloads the fluint swc.">
+        <antcall target="download-swc">
+            <param name="srcUrl" value="https://fluint.googlecode.com/svn-history/r268/branches/skunkworks/flexUnit4/FlexUnit4/libs"/>
+            <param name="srcSwcFile" value="fluint-1_2.swc"/>
+            <param name="destSwcFile" value="${lib.dir}/fluint-1_2.swc"/>
+        </antcall>
+    </target>
+	
+</project>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4FluintExtensions/libs/fluint-1_2.swc
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/libs/fluint-1_2.swc b/FlexUnit4FluintExtensions/libs/fluint-1_2.swc
deleted file mode 100644
index 2887f84..0000000
Binary files a/FlexUnit4FluintExtensions/libs/fluint-1_2.swc and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4Test/.gitignore
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/.gitignore b/FlexUnit4Test/.gitignore
index 139b5d0..30763fb 100644
--- a/FlexUnit4Test/.gitignore
+++ b/FlexUnit4Test/.gitignore
@@ -1,2 +1,3 @@
 /.actionScriptProperties
 /.flexProperties
+/in/

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4Test/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/build.xml b/FlexUnit4Test/build.xml
index d5a7a3f..1cae7f7 100644
--- a/FlexUnit4Test/build.xml
+++ b/FlexUnit4Test/build.xml
@@ -187,8 +187,12 @@
          </classpath>
       </taskdef>
    </target>
+	
+   <target name="prebuild">
+		<ant antfile="${basedir}/downloads.xml" dir="${basedir}" />
+    </target>
 
-   <target name="test" depends="init,test-only,test-and-instrument" />
+   <target name="test" depends="init,prebuild,test-only,test-and-instrument" />
 
    <target name="test-only" unless="build.instrument">
       <echo message="Testing FlexUnit Flex build..." />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4Test/downloads.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/downloads.xml b/FlexUnit4Test/downloads.xml
new file mode 100644
index 0000000..1851b3c
--- /dev/null
+++ b/FlexUnit4Test/downloads.xml
@@ -0,0 +1,239 @@
+<?xml version="1.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.
+
+-->
+
+<project name="downloads" default="main" basedir=".">
+	
+    <pathconvert property="compiler.tests" dirsep="/">
+        <path location="${basedir}"/>
+    </pathconvert>
+
+    <property name="lib.dir" value="${compiler.tests}/libs"/>
+    
+	<property name="download.dir" value="${compiler.tests}/in"/>
+    
+	<!-- 
+	   Notes:
+	       For Apache, the SWCs must be removed from the repository.
+	       
+	       Licenses:
+	       	fluint (1.2)  - MIT
+            flexunit1lib ()  - ?
+            hamcrest (1.1.3)  - 
+	-->
+		     
+    <!-- 
+        Because the downloads requires a network connection and the JARs don't change very often, 
+        they are each downloaded only if they don't already exist. 
+    -->
+    
+	<target name="main" depends="prepare, flexunit1lib-swc, hamcrest-swc, fluint-swc"
+		    description="Downloads all the required thirdparty SWCs"/>
+
+    <target name="prepare" >
+        <mkdir dir="${lib.dir}" />
+    </target>
+    
+    <!--
+		Cleanup
+	-->
+	
+    <target name="clean" 
+            description="Removes thirdparty downloads.">
+        <delete includeEmptyDirs="true" failonerror="false">
+            <fileset dir="${download.dir}">
+                <include name="FlexUnit1Lib*/**"/>
+            </fileset>
+        </delete>
+    </target>
+    
+    <!--
+	    Download thirdparty SWCs    
+	-->
+
+    <!--
+        Download a swc file and optionally verify the checksum.
+        If the checksum fails, this script fails.
+        
+        Params are:
+            srcUrl
+            srcSwcFile
+            destSwcFile
+            [md5]
+    -->
+    <target name="download-swc" 
+            description="Downloads swc, and optionally verifies checksum.">                    
+        <get src="${srcUrl}/${srcSwcFile}" dest="${destSwcFile}"/>
+        <checksum file="${destSwcFile}" algorithm="MD5" property="${we.failed}"/>
+        <antcall target="fail-with-message">
+            <param name="message" value="Checksum mismatch for ${destSwcFile}"/>
+        </antcall>
+    </target>
+	
+    <!--
+        Download a zip or gz file, extracts the jar file, and optionally copies the jar
+        file to a different location and optinally verifies the checksum.  
+        If the checksum fails, this script fails.
+
+        Params are:
+            srcUrl
+            zipFile - a .gz file for untar with gzip, else unzip
+            [md5]
+            [srcJarPath] - both src and dest required for the copy
+            [destJarFile]
+
+        Note: This is purposely coded without <if><else><then> so that a dependency on
+        ant-contrib.jar isn't required.        
+    -->
+	
+    <target name="download-zip"
+        description="Downloads tar/zip, and optionally verifies checksum and copies extracted swc.">                
+        
+        <mkdir dir="${download.dir}"/>        
+    	
+        <get src="${srcUrl}/${zipFile}" dest="${download.dir}/${zipFile}"/>
+
+        <condition property="zip.compressed">
+            <matches string="${zipFile}" pattern="^*.zip$"/>      
+        </condition>
+ 
+        <antcall target="untar-file"/>
+        <antcall target="unzip-file"/>
+        
+        <antcall target="check-sum">
+            <param name="message" value="Checksum mismatch for ${download.dir}/${zipFile}"/>
+        </antcall>
+        
+        <condition property="destination.known">
+            <and>
+                <isset property="srcJarPath"/>
+                <isset property="destJarFile"/>
+            </and>
+        </condition> 
+        <antcall target="copy-downloaded-swc"/>
+     </target> 
+	
+    <target name="untar-file" unless="zip.compressed" description="Untars zipFile">
+        <untar src="${download.dir}/${zipFile}" dest="${download.dir}/temp" compression="gzip"/> 
+    </target>
+    
+    <target name="unzip-file" if="zip.compressed" description="Unzips zipFile">
+        <unzip src="${download.dir}/${zipFile}" dest="${download.dir}/temp"/>    
+    </target>
+    
+    <target name="check-sum" if="md5" 
+        description="Verifies MD5 checksum, and fails if checksum doesn't match">
+        
+        <checksum file="${download.dir}/${zipFile}" algorithm="MD5" property="${we.failed}"/>
+        <antcall target="fail-with-message">
+            <param name="message" value="${message}"/>
+        </antcall>
+    </target>
+	
+    <target name="copy-downloaded-swc" if="destination.known">
+        <mkdir dir="${lib.dir}"/>
+        <copy file="${download.dir}/temp/${srcJarPath}" toFile="${destJarFile}" verbose="true"/>
+    </target>
+	
+    <target name="fail-with-message" if="we.failed" 
+            description="Conditionally fails with the specified message">                
+        <fail message="${message}"/>
+    </target>
+        
+    <!--
+        flexunit1lib
+    -->
+    
+    <target name="flexunit1lib-swc-check" description="Checks if flexunit1lib swc exists.">
+    	<condition property="flexunit1lib.swc.exists">
+    	    <and>
+    	        <available file="${lib.dir}/FlexUnit1Lib.swc"/>
+    	    </and>
+        </condition>
+    </target>
+    
+    <target name="flexunit1lib-swc" depends="flexunit1lib-swc-check" unless="flexunit1lib.swc.exists"
+            description="Copies the flexunit1lib swc to the lib directory.">
+        <echo message="Obtaining libs/FlexUnit1Lib.swc"/>
+        <antcall target="flexunit1lib-download-swc"/>
+    </target>
+    
+    <target name="flexunit1lib-download-swc" depends="flexunit1lib-swc-check" unless="flexunit1lib.swc.exists"
+            description="Downloads the flexunit1lib swc.">
+        <antcall target="download-swc">
+            <param name="srcUrl" value="https://fluint.googlecode.com/svn-history/r268/branches/skunkworks/flexUnit4/FlexUnit4/libs"/>
+            <param name="srcSwcFile" value="FlexUnit1Lib.swc"/>
+            <param name="destSwcFile" value="${lib.dir}/FlexUnit1Lib.swc"/>
+        </antcall>
+    </target>
+	
+	
+	   <!--
+	        hamcrest-as3  
+	    -->	    
+	    <target name="hamcrest-swc" depends="hamcrest-swc-check" 
+	        unless="hamcrest.swc.exists" 
+	        description="Downloads and copies hamcrest to the lib directory.">
+	        <echo message="Obtaining lib/hamcrest-as3-flex-1.1.3.swc"/>
+	        <antcall target="download-zip">
+	          <param name="srcUrl" value="http://cloud.github.com/downloads/drewbourne/hamcrest-as3"/>
+	          <param name="zipFile" value="hamcrest-as3-flex-1.1.3.zip"/>
+	          <param name="srcJarPath" value="hamcrest-as3-flex-1.1.3/hamcrest-as3-flex-1.1.3.swc"/>
+	          <param name="md5" value="b73fe1bb5f443993adcf8b274f6a48b2"/>
+	          <param name="destJarFile" value="${lib.dir}/hamcrest-as3-flex-1.1.3.swc"/>
+	        </antcall>
+	        <delete dir="${download.dir}/temp/hamcrest-as3-flex-1.1.3"/>
+	    </target>
+	    
+	    <target name="hamcrest-swc-check" description="Checks if hamcrest swc exists.">
+	    	<condition property="hamcrest.swc.exists">
+	    	    <and>
+	    	        <available file="${lib.dir}/hamcrest-as3-flex-1.1.3.swc"/>
+	    	    </and>
+	        </condition>
+	    </target>
+	
+	   <!--
+	        fluint
+	    -->
+	    
+	    <target name="fluint-swc-check" description="Checks if fluint swc exists.">
+	    	<condition property="fluint.swc.exists">
+	    	    <and>
+	    	        <available file="${lib.dir}/fluint-1_2.swc"/>
+	    	    </and>
+	        </condition>
+	    </target>
+	    
+	    <target name="fluint-swc" depends="fluint-swc-check" unless="fluint.swc.exists"
+	            description="Copies the fluint swc to the lib directory.">
+	        <echo message="Obtaining libs/fluint-1_2.swc"/>
+	        <antcall target="fluint-download-swc"/>
+	    </target>
+	    
+	    <target name="fluint-download-swc" depends="fluint-swc-check" unless="fluint.swc.exists"
+	            description="Downloads the fluint swc.">
+	        <antcall target="download-swc">
+	            <param name="srcUrl" value="https://fluint.googlecode.com/svn-history/r268/branches/skunkworks/flexUnit4/FlexUnit4/libs"/>
+	            <param name="srcSwcFile" value="fluint-1_2.swc"/>
+	            <param name="destSwcFile" value="${lib.dir}/fluint-1_2.swc"/>
+	        </antcall>
+	    </target>
+	
+</project>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4Test/libs/FlexUnit1Lib.swc
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/libs/FlexUnit1Lib.swc b/FlexUnit4Test/libs/FlexUnit1Lib.swc
deleted file mode 100644
index 6c46851..0000000
Binary files a/FlexUnit4Test/libs/FlexUnit1Lib.swc and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4Test/libs/fluint-1_2.swc
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/libs/fluint-1_2.swc b/FlexUnit4Test/libs/fluint-1_2.swc
deleted file mode 100644
index 2887f84..0000000
Binary files a/FlexUnit4Test/libs/fluint-1_2.swc and /dev/null differ

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/81c486b9/FlexUnit4Test/libs/hamcrest-as3-1.1.0.swc
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/libs/hamcrest-as3-1.1.0.swc b/FlexUnit4Test/libs/hamcrest-as3-1.1.0.swc
deleted file mode 100644
index a5fecf8..0000000
Binary files a/FlexUnit4Test/libs/hamcrest-as3-1.1.0.swc and /dev/null differ


[02/41] removed digital primates copyright header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as b/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
index 0d0fbe0..c160fc6 100644
--- a/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
+++ b/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.builders {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as b/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
index e45f2cb..e70a124 100644
--- a/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
+++ b/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package org.flexunit.internals.runners {
 	import flash.events.Event;
 	import flash.utils.getDefinitionByName;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
index c9f3016..783b3c6 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite
 {
 	import flexUnitTests.flexUnit1.framework.AllFrameworkTests;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
index 04f4515..ec87f5b 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
index 0eacceb..d383e71 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
index 39faa89..0a2e585 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousAS.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases {
 	import flash.events.DataEvent;
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
index dc57a5d..b8f73cc 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
index 463bc49..dc8b47d 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
index 000617d..a0a92e5 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
index f076d2e..9eb5ca5 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
index 06a03cb..87a0912 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
index 7735ac7..6d46e86 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
index 3dfd112..27ee830 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
index 77e5a4e..a7b4862 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
index 3d84b2c..164a742 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
index 402bdd9..122be2e 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as b/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
index b340051..c283640 100644
--- a/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
+++ b/FlexUnit4Test/src/org/flexunit/cases/AssertCase.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package org.flexunit.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
index f98dbfe..28d52f4 100644
--- a/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
+++ b/FlexUnit4Test/src/tests/flex/lang/reflect/constructor/helper/StubKlass.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Michael Labriola 
- * @version    
- **/ 
 package tests.flex.lang.reflect.constructor.helper {
 	import flex.lang.reflect.Klass;
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
index 5237a48..e77a866 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/FlexUnit4Suite.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite
 {
 	import flexUnitTests.flexUnit1.framework.AllFrameworkTests;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
index 04f4515..ec87f5b 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestASComponentUse.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
index 0eacceb..d383e71 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAssert.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flexunit.framework.AssertionFailedError;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
index e96d0c3..0c213f7 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronous.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases {
 	import flash.events.DataEvent;
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
index dc57a5d..b8f73cc 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestAsynchronousSetUpTearDown.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
index 463bc49..dc8b47d 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrder.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
index 66e492a..40b98d3 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterClassOrderAsync.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
index f076d2e..9eb5ca5 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrder.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
index 06a03cb..87a0912 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBeforeAfterOrderAsync.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.TimerEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
index 7735ac7..6d46e86 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestBindingUse.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
index 3dfd112..27ee830 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestIgnore.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
index 77e5a4e..a7b4862 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMXMLComponentUse.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
index 3d84b2c..164a742 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestMethodOrder.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
index 402bdd9..122be2e 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/flexUnit4/suites/frameworkSuite/cases/TestSynchronousSetUpTearDown.as
@@ -1,27 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/ 
 package flexUnitTests.flexUnit4.suites.frameworkSuite.cases
 {
 	import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as b/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
index 82131a3..4af5158 100644
--- a/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
+++ b/FlexUnit4Turnkey/src/flexUnitTests/hamcrest/HamcrestSuite.as
@@ -1,29 +1,3 @@
-/**
- * Copyright (c) 2007 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- **/
- 
-/** This class executes the ported hamcrest-as3 test from Drew Bourne's project **/
 package flexUnitTests.hamcrest
 {
 	import org.hamcrest.BaseMatcherTest;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/4a6e50ff/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
----------------------------------------------------------------------
diff --git a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
index aaf672c..75e580e 100644
--- a/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
+++ b/FlexUnit4UIListener/src/org/flexunit/flexui/patterns/AssertThatPattern.as
@@ -1,30 +1,3 @@
-/**
- * Copyright (c) 2009 Digital Primates IT Consulting Group
- * 
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use,
- * copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following
- * conditions:
- * 
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- * 
- * @author     Joseph Adkins
- * @version    
- **/ 
 package org.flexunit.flexui.patterns
 {
    import mx.utils.StringUtil;


[25/41] added Apache license header

Posted by cz...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/.actionScriptProperties b/FlexUnit4CIListener/.actionScriptProperties
index c381166..7ed86fd 100644
--- a/FlexUnit4CIListener/.actionScriptProperties
+++ b/FlexUnit4CIListener/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <actionScriptProperties mainApplicationPath="FlexUnit4CIListener.as" version="3">
   <compiler additionalCompilerArguments="" copyDependentFiles="false" enableModuleDebug="false" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersion="9.0.124" htmlPlayerVersionCheck="true" outputFolderPath="bin" sourceFolderPath="src" strict="true" useApolloConfig="true" verifyDigests="true" warn="true">
     <compilerSourcePath/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/.flexLibProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/.flexLibProperties b/FlexUnit4CIListener/.flexLibProperties
index dc6a5b7..424eaba 100644
--- a/FlexUnit4CIListener/.flexLibProperties
+++ b/FlexUnit4CIListener/.flexLibProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <flexLibProperties version="1">
   <includeClasses>
     <classEntry path="org.flexunit.listeners.VisualDebuggerListener"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/.project b/FlexUnit4CIListener/.project
index fddb0c4..252cf9d 100644
--- a/FlexUnit4CIListener/.project
+++ b/FlexUnit4CIListener/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4CIListener</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/.settings/org.eclipse.core.resources.prefs
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/.settings/org.eclipse.core.resources.prefs b/FlexUnit4CIListener/.settings/org.eclipse.core.resources.prefs
index fb52711..32c951b 100644
--- a/FlexUnit4CIListener/.settings/org.eclipse.core.resources.prefs
+++ b/FlexUnit4CIListener/.settings/org.eclipse.core.resources.prefs
@@ -1,3 +1,18 @@
+# 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.
+
 #Wed Nov 25 08:51:18 CST 2009
 eclipse.preferences.version=1
 encoding/<project>=UTF-8

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/build.xml b/FlexUnit4CIListener/build.xml
index 98ffc56..33d1651 100644
--- a/FlexUnit4CIListener/build.xml
+++ b/FlexUnit4CIListener/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project name="FlexUnit4CIListener" basedir="." default="package">
    <import file="${basedir}/../utils.xml" />
    <property environment="env" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as b/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
index a6cedad..e277e9a 100644
--- a/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
+++ b/FlexUnit4CIListener/src/org/flexunit/listeners/CIListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners
 {
 	import flash.events.DataEvent;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/src/org/flexunit/listeners/TestCaseReport.as
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/src/org/flexunit/listeners/TestCaseReport.as b/FlexUnit4CIListener/src/org/flexunit/listeners/TestCaseReport.as
index 63dc9fd..fe3d528 100644
--- a/FlexUnit4CIListener/src/org/flexunit/listeners/TestCaseReport.as
+++ b/FlexUnit4CIListener/src/org/flexunit/listeners/TestCaseReport.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners
 {
 	public class TestCaseReport

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/src/org/flexunit/listeners/TestSuiteReport.as
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/src/org/flexunit/listeners/TestSuiteReport.as b/FlexUnit4CIListener/src/org/flexunit/listeners/TestSuiteReport.as
index 8c260c2..e7e2ec3 100644
--- a/FlexUnit4CIListener/src/org/flexunit/listeners/TestSuiteReport.as
+++ b/FlexUnit4CIListener/src/org/flexunit/listeners/TestSuiteReport.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners
 {
 	public class TestSuiteReport

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/src/org/flexunit/listeners/VisualDebuggerListener.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/src/org/flexunit/listeners/VisualDebuggerListener.mxml b/FlexUnit4CIListener/src/org/flexunit/listeners/VisualDebuggerListener.mxml
index a000dc9..ac3905a 100644
--- a/FlexUnit4CIListener/src/org/flexunit/listeners/VisualDebuggerListener.mxml
+++ b/FlexUnit4CIListener/src/org/flexunit/listeners/VisualDebuggerListener.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="setupConnection(event)" implements="org.flexunit.runner.notification.IAsyncStartupRunListener">
 	<mx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/src/org/flexunit/listeners/closer/ApplicationCloser.as
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/src/org/flexunit/listeners/closer/ApplicationCloser.as b/FlexUnit4CIListener/src/org/flexunit/listeners/closer/ApplicationCloser.as
index 1f4b79d..849b764 100644
--- a/FlexUnit4CIListener/src/org/flexunit/listeners/closer/ApplicationCloser.as
+++ b/FlexUnit4CIListener/src/org/flexunit/listeners/closer/ApplicationCloser.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners.closer
 {
 	/**

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4CIListener/src/org/flexunit/listeners/closer/StandAloneFlashPlayerCloser.as
----------------------------------------------------------------------
diff --git a/FlexUnit4CIListener/src/org/flexunit/listeners/closer/StandAloneFlashPlayerCloser.as b/FlexUnit4CIListener/src/org/flexunit/listeners/closer/StandAloneFlashPlayerCloser.as
index a6efaa4..bb76473 100644
--- a/FlexUnit4CIListener/src/org/flexunit/listeners/closer/StandAloneFlashPlayerCloser.as
+++ b/FlexUnit4CIListener/src/org/flexunit/listeners/closer/StandAloneFlashPlayerCloser.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners.closer
 {
 	import flash.system.fscommand;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FlexCoverListener/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4FlexCoverListener/.actionScriptProperties b/FlexUnit4FlexCoverListener/.actionScriptProperties
index 90b9457..f63c70a 100644
--- a/FlexUnit4FlexCoverListener/.actionScriptProperties
+++ b/FlexUnit4FlexCoverListener/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <actionScriptProperties mainApplicationPath="FlexUnit4FlexCoverListener.as" version="3">
 <compiler additionalCompilerArguments="" copyDependentFiles="false" enableModuleDebug="true" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersion="9.0.124" htmlPlayerVersionCheck="true" outputFolderPath="bin" sourceFolderPath="src" strict="true" useApolloConfig="false" verifyDigests="true" warn="true">
 <compilerSourcePath/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FlexCoverListener/.flexLibProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4FlexCoverListener/.flexLibProperties b/FlexUnit4FlexCoverListener/.flexLibProperties
index 4cd52bc..7f88273 100644
--- a/FlexUnit4FlexCoverListener/.flexLibProperties
+++ b/FlexUnit4FlexCoverListener/.flexLibProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <flexLibProperties version="1">
 <includeClasses>
 <classEntry path="org.flexunit.listeners.FlexCoverListener"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FlexCoverListener/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4FlexCoverListener/.project b/FlexUnit4FlexCoverListener/.project
index aae46f4..88a09d2 100644
--- a/FlexUnit4FlexCoverListener/.project
+++ b/FlexUnit4FlexCoverListener/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4FlexCoverListener</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FlexCoverListener/.settings/org.eclipse.core.resources.prefs
----------------------------------------------------------------------
diff --git a/FlexUnit4FlexCoverListener/.settings/org.eclipse.core.resources.prefs b/FlexUnit4FlexCoverListener/.settings/org.eclipse.core.resources.prefs
index d4bc8cc..ab65648 100644
--- a/FlexUnit4FlexCoverListener/.settings/org.eclipse.core.resources.prefs
+++ b/FlexUnit4FlexCoverListener/.settings/org.eclipse.core.resources.prefs
@@ -1,3 +1,18 @@
+# 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.
+
 #Tue Dec 08 16:57:05 EST 2009
 eclipse.preferences.version=1
 encoding/<project>=utf-8

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FlexCoverListener/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4FlexCoverListener/build.xml b/FlexUnit4FlexCoverListener/build.xml
index 4aaddaf..c33ac5e 100644
--- a/FlexUnit4FlexCoverListener/build.xml
+++ b/FlexUnit4FlexCoverListener/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project name="FlexUnit4FlexCoverListener" basedir="." default="package">
    <import file="${basedir}/../utils.xml" />
    <property environment="env" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/FlexCoverListener.as
----------------------------------------------------------------------
diff --git a/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/FlexCoverListener.as b/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/FlexCoverListener.as
index e32b4e7..c56e503 100644
--- a/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/FlexCoverListener.as
+++ b/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/FlexCoverListener.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners
 {
    import org.flexunit.listeners.closer.FlexCoverCloser;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/closer/FlexCoverCloser.as
----------------------------------------------------------------------
diff --git a/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/closer/FlexCoverCloser.as b/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/closer/FlexCoverCloser.as
index f0388b4..ca86a0b 100644
--- a/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/closer/FlexCoverCloser.as
+++ b/FlexUnit4FlexCoverListener/src/org/flexunit/listeners/closer/FlexCoverCloser.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.listeners.closer
 {
 	import com.allurent.coverage.runtime.CoverageManager;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FluintExtensions/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/.actionScriptProperties b/FlexUnit4FluintExtensions/.actionScriptProperties
index fd496bf..6a6c55b 100644
--- a/FlexUnit4FluintExtensions/.actionScriptProperties
+++ b/FlexUnit4FluintExtensions/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <actionScriptProperties analytics="false" mainApplicationPath="FlexUnit4FluintExtensions.as" projectUUID="f6420058-48d5-494b-b532-7d03fdd7c4c9" version="10">
   <compiler additionalCompilerArguments="-locale en_US" autoRSLOrdering="true" copyDependentFiles="false" fteInMXComponents="false" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin" removeUnusedRSL="true" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
     <compilerSourcePath/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FluintExtensions/.flexLibProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/.flexLibProperties b/FlexUnit4FluintExtensions/.flexLibProperties
index 225358b..f59e19a 100644
--- a/FlexUnit4FluintExtensions/.flexLibProperties
+++ b/FlexUnit4FluintExtensions/.flexLibProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <flexLibProperties includeAllClasses="true" useMultiPlatformConfig="false" version="3">
   <includeClasses>
     <classEntry path="org.flexunit.internals.builders.Fluint1Builder"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FluintExtensions/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/.project b/FlexUnit4FluintExtensions/.project
index 4435e3a..a4d6578 100644
--- a/FlexUnit4FluintExtensions/.project
+++ b/FlexUnit4FluintExtensions/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4FluintExtensions</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FluintExtensions/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/build.xml b/FlexUnit4FluintExtensions/build.xml
index b714d80..f22dfc5 100644
--- a/FlexUnit4FluintExtensions/build.xml
+++ b/FlexUnit4FluintExtensions/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <project name="FlexUnit4CIListener" basedir="." default="package">
    <import file="${basedir}/../utils.xml" />
    <property environment="env" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as b/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
index c160fc6..d7fe466 100644
--- a/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
+++ b/FlexUnit4FluintExtensions/src/org/flexunit/internals/builders/Fluint1Builder.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.builders {
 	import flash.utils.*;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
----------------------------------------------------------------------
diff --git a/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as b/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
index e70a124..159e16d 100644
--- a/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
+++ b/FlexUnit4FluintExtensions/src/org/flexunit/internals/runners/Fluint1ClassRunner.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.internals.runners {
 	import flash.events.Event;
 	import flash.utils.getDefinitionByName;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/.actionScriptProperties b/FlexUnit4SampleCIProject/.actionScriptProperties
index dbf8053..0fee000 100644
--- a/FlexUnit4SampleCIProject/.actionScriptProperties
+++ b/FlexUnit4SampleCIProject/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <actionScriptProperties mainApplicationPath="Main.mxml" version="3">
   <compiler additionalCompilerArguments="-locale en_US" copyDependentFiles="true" enableModuleDebug="true" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="true" htmlHistoryManagement="true" htmlPlayerVersion="9.0.124" htmlPlayerVersionCheck="true" outputFolderPath="bin-debug" sourceFolderPath="src/main/flex" strict="true" useApolloConfig="false" verifyDigests="true" warn="true">
     <compilerSourcePath>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/.flexProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/.flexProperties b/FlexUnit4SampleCIProject/.flexProperties
index adaa3ea..59a27b2 100644
--- a/FlexUnit4SampleCIProject/.flexProperties
+++ b/FlexUnit4SampleCIProject/.flexProperties
@@ -1,2 +1,18 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <flexProperties flexServerType="0" toolCompile="true" useServerFlexSDK="false" version="1"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/.project b/FlexUnit4SampleCIProject/.project
index 630320f..ad08dfb 100644
--- a/FlexUnit4SampleCIProject/.project
+++ b/FlexUnit4SampleCIProject/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4SampleCIProject</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/html-template/history/history.css
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/html-template/history/history.css b/FlexUnit4SampleCIProject/html-template/history/history.css
index 664ea26..c592c2a 100644
--- a/FlexUnit4SampleCIProject/html-template/history/history.css
+++ b/FlexUnit4SampleCIProject/html-template/history/history.css
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 /* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */
 
 #ie_historyFrame { width: 0px; height: 0px; display:none }

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/html-template/history/history.js
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/html-template/history/history.js b/FlexUnit4SampleCIProject/html-template/history/history.js
index 8ba2d51..77a640f 100644
--- a/FlexUnit4SampleCIProject/html-template/history/history.js
+++ b/FlexUnit4SampleCIProject/html-template/history/history.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 BrowserHistoryUtils = {
     addEvent: function(elm, evType, fn, useCapture) {
         useCapture = useCapture || false;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/html-template/history/historyFrame.html
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/html-template/history/historyFrame.html b/FlexUnit4SampleCIProject/html-template/history/historyFrame.html
index aebb8d8..1f30cc3 100644
--- a/FlexUnit4SampleCIProject/html-template/history/historyFrame.html
+++ b/FlexUnit4SampleCIProject/html-template/history/historyFrame.html
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <html>
     <head>
         <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/html-template/index.template.html
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/html-template/index.template.html b/FlexUnit4SampleCIProject/html-template/index.template.html
index a8b3b64..58c00da 100644
--- a/FlexUnit4SampleCIProject/html-template/index.template.html
+++ b/FlexUnit4SampleCIProject/html-template/index.template.html
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <!-- saved from url=(0014)about:internet -->
 <html lang="en">
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/src/main/flex/Main.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/src/main/flex/Main.mxml b/FlexUnit4SampleCIProject/src/main/flex/Main.mxml
index 0cadaa2..b38a2ec 100644
--- a/FlexUnit4SampleCIProject/src/main/flex/Main.mxml
+++ b/FlexUnit4SampleCIProject/src/main/flex/Main.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:demo="org.flexunit.demo.*"
    width="100%"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/src/main/flex/org/flexunit/demo/EchoPanel.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/src/main/flex/org/flexunit/demo/EchoPanel.mxml b/FlexUnit4SampleCIProject/src/main/flex/org/flexunit/demo/EchoPanel.mxml
index 7796107..07960c5 100644
--- a/FlexUnit4SampleCIProject/src/main/flex/org/flexunit/demo/EchoPanel.mxml
+++ b/FlexUnit4SampleCIProject/src/main/flex/org/flexunit/demo/EchoPanel.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" 
    layout="vertical"
    title="Echo Panel" 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/src/test/flex/AirTestRunner.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/src/test/flex/AirTestRunner.mxml b/FlexUnit4SampleCIProject/src/test/flex/AirTestRunner.mxml
index 615c9a4..d7901e5 100644
--- a/FlexUnit4SampleCIProject/src/test/flex/AirTestRunner.mxml
+++ b/FlexUnit4SampleCIProject/src/test/flex/AirTestRunner.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
    xmlns:flexUnitUIRunner="http://www.adobe.com/2009/flexUnitUIRunner"
    creationComplete="runTests();"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/src/test/flex/TestRunner.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/src/test/flex/TestRunner.mxml b/FlexUnit4SampleCIProject/src/test/flex/TestRunner.mxml
index a72069c..9b4835a 100644
--- a/FlexUnit4SampleCIProject/src/test/flex/TestRunner.mxml
+++ b/FlexUnit4SampleCIProject/src/test/flex/TestRunner.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
    xmlns:flexUnitUIRunner="http://www.adobe.com/2009/flexUnitUIRunner"
    creationComplete="runTests();"

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/EchoPanelTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/EchoPanelTest.as b/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/EchoPanelTest.as
index 7e8104a..d031740 100644
--- a/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/EchoPanelTest.as
+++ b/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/EchoPanelTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.demo {
    import flash.events.MouseEvent;
    

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/SampleTest.as
----------------------------------------------------------------------
diff --git a/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/SampleTest.as b/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/SampleTest.as
index ae957b3..4f8e355 100644
--- a/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/SampleTest.as
+++ b/FlexUnit4SampleCIProject/src/test/flex/org/flexunit/demo/SampleTest.as
@@ -1,3 +1,19 @@
+/*
+ * 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 org.flexunit.demo {
 
    import org.flexunit.Assert;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/.actionScriptProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/.actionScriptProperties b/FlexUnit4Test/.actionScriptProperties
index 30afcd8..d21b2ca 100644
--- a/FlexUnit4Test/.actionScriptProperties
+++ b/FlexUnit4Test/.actionScriptProperties
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <actionScriptProperties analytics="false" mainApplicationPath="UIRunner.mxml" projectUUID="c0791c78-cb1b-4837-9e08-e5a4373e5714" version="6">
   <compiler additionalCompilerArguments="-locale en_US -define=CONFIG::useFlexClasses,true" autoRSLOrdering="false" copyDependentFiles="true" fteInMXComponents="false" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="true" htmlHistoryManagement="true" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin-debug" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
     <compilerSourcePath/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/.flexProperties
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/.flexProperties b/FlexUnit4Test/.flexProperties
index b5f031b..ff2f0a2 100644
--- a/FlexUnit4Test/.flexProperties
+++ b/FlexUnit4Test/.flexProperties
@@ -1,2 +1,18 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!--
+  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.
+-->
 <flexProperties enableServiceManager="false" flexServerFeatures="0" flexServerType="0" toolCompile="true" useServerFlexSDK="false" version="1"/>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/.project
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/.project b/FlexUnit4Test/.project
index edf582b..48d437b 100644
--- a/FlexUnit4Test/.project
+++ b/FlexUnit4Test/.project
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <projectDescription>
 	<name>FlexUnit4Test</name>
 	<comment></comment>

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/build.xml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/build.xml b/FlexUnit4Test/build.xml
index ab48cdd..d5a7a3f 100644
--- a/FlexUnit4Test/build.xml
+++ b/FlexUnit4Test/build.xml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
 <!--
    The sole purpose of this project is to create a transitive dependency between the core and cilistener
    projects.  If the tests resided with the core project, then core and cilistener would have a circular

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/fc-to-cobertura.xsl
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/fc-to-cobertura.xsl b/FlexUnit4Test/fc-to-cobertura.xsl
index cc1b442..850de11 100644
--- a/FlexUnit4Test/fc-to-cobertura.xsl
+++ b/FlexUnit4Test/fc-to-cobertura.xsl
@@ -1,4 +1,20 @@
 <?xml version="1.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.
+-->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 	version="2.0">
 	<xsl:output indent="yes" omit-xml-declaration="no" method="xml" />

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/html-template/history/history.css
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/html-template/history/history.css b/FlexUnit4Test/html-template/history/history.css
index dbc47c6..8716330 100644
--- a/FlexUnit4Test/html-template/history/history.css
+++ b/FlexUnit4Test/html-template/history/history.css
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 /* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */
 
 #ie_historyFrame { width: 0px; height: 0px; display:none }

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/html-template/history/history.js
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/html-template/history/history.js b/FlexUnit4Test/html-template/history/history.js
index 3279a53..c6d88d5 100644
--- a/FlexUnit4Test/html-template/history/history.js
+++ b/FlexUnit4Test/html-template/history/history.js
@@ -1,3 +1,19 @@
+/*
+ * 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.
+ */
 BrowserHistoryUtils = {
     addEvent: function(elm, evType, fn, useCapture) {
         useCapture = useCapture || false;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/html-template/history/historyFrame.html
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/html-template/history/historyFrame.html b/FlexUnit4Test/html-template/history/historyFrame.html
index 07e3806..c8af338 100644
--- a/FlexUnit4Test/html-template/history/historyFrame.html
+++ b/FlexUnit4Test/html-template/history/historyFrame.html
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <html>
     <head>
         <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/html-template/index.template.html
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/html-template/index.template.html b/FlexUnit4Test/html-template/index.template.html
index 20ee809..eaa3a12 100644
--- a/FlexUnit4Test/html-template/index.template.html
+++ b/FlexUnit4Test/html-template/index.template.html
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <!-- saved from url=(0014)about:internet -->
 <html lang="en">
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/InstrumentTestRunner.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/InstrumentTestRunner.mxml b/FlexUnit4Test/src/InstrumentTestRunner.mxml
index 774dc18..b559571 100644
--- a/FlexUnit4Test/src/InstrumentTestRunner.mxml
+++ b/FlexUnit4Test/src/InstrumentTestRunner.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Application 
 	xmlns:mx="http://www.adobe.com/2006/mxml"
 	creationComplete="runMe()" >

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/TestRunner.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/TestRunner.mxml b/FlexUnit4Test/src/TestRunner.mxml
index 7599c3b..4d4b82e 100644
--- a/FlexUnit4Test/src/TestRunner.mxml
+++ b/FlexUnit4Test/src/TestRunner.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Application 
 	xmlns:mx="http://www.adobe.com/2006/mxml"
 	creationComplete="runMe()" >

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/UIRunner.mxml
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/UIRunner.mxml b/FlexUnit4Test/src/UIRunner.mxml
index c6e2988..27cd37e 100644
--- a/FlexUnit4Test/src/UIRunner.mxml
+++ b/FlexUnit4Test/src/UIRunner.mxml
@@ -1,4 +1,20 @@
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  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.
+-->
 <mx:Application 
 	xmlns:mx="http://www.adobe.com/2006/mxml"
 	creationComplete="runMe()" xmlns:adobe="http://www.adobe.com/2009/flexUnitUIRunner">

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/compilationSuite/FlexUnit4ASSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/compilationSuite/FlexUnit4ASSuite.as b/FlexUnit4Test/src/compilationSuite/FlexUnit4ASSuite.as
index be7a8e7..0688b0a 100644
--- a/FlexUnit4Test/src/compilationSuite/FlexUnit4ASSuite.as
+++ b/FlexUnit4Test/src/compilationSuite/FlexUnit4ASSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 compilationSuite
 {
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/compilationSuite/SuitesToRun.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/compilationSuite/SuitesToRun.as b/FlexUnit4Test/src/compilationSuite/SuitesToRun.as
index f1c2051..d7a8fcc 100644
--- a/FlexUnit4Test/src/compilationSuite/SuitesToRun.as
+++ b/FlexUnit4Test/src/compilationSuite/SuitesToRun.as
@@ -1,3 +1,19 @@
+/*
+ * 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 compilationSuite
 {
 	import compilationSuite.actionscript.ActionScriptSuite;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/compilationSuite/actionscript/ActionScriptSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/compilationSuite/actionscript/ActionScriptSuite.as b/FlexUnit4Test/src/compilationSuite/actionscript/ActionScriptSuite.as
index c42de87..aa674e8 100644
--- a/FlexUnit4Test/src/compilationSuite/actionscript/ActionScriptSuite.as
+++ b/FlexUnit4Test/src/compilationSuite/actionscript/ActionScriptSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 compilationSuite.actionscript {
 	import compilationSuite.FlexUnit4ASSuite;
 	

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/compilationSuite/flex/FlexSuite.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/compilationSuite/flex/FlexSuite.as b/FlexUnit4Test/src/compilationSuite/flex/FlexSuite.as
index a0a9241..72982a2 100644
--- a/FlexUnit4Test/src/compilationSuite/flex/FlexSuite.as
+++ b/FlexUnit4Test/src/compilationSuite/flex/FlexSuite.as
@@ -1,3 +1,19 @@
+/*
+ * 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 compilationSuite.flex {
 
 	[Suite]

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flex/lang/reflect/mocks/KlassMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flex/lang/reflect/mocks/KlassMock.as b/FlexUnit4Test/src/flex/lang/reflect/mocks/KlassMock.as
index 9b38eaa..d0012d9 100644
--- a/FlexUnit4Test/src/flex/lang/reflect/mocks/KlassMock.as
+++ b/FlexUnit4Test/src/flex/lang/reflect/mocks/KlassMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flex/lang/reflect/mocks/MethodMock.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flex/lang/reflect/mocks/MethodMock.as b/FlexUnit4Test/src/flex/lang/reflect/mocks/MethodMock.as
index 3b41342..7e4023a 100644
--- a/FlexUnit4Test/src/flex/lang/reflect/mocks/MethodMock.as
+++ b/FlexUnit4Test/src/flex/lang/reflect/mocks/MethodMock.as
@@ -1,3 +1,19 @@
+/*
+ * 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 flex.lang.reflect.mocks
 {
 	import com.anywebcam.mock.Mock;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/TestingTester.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/TestingTester.as b/FlexUnit4Test/src/flexUnitTests/TestingTester.as
index 148fc82..5bc4111 100644
--- a/FlexUnit4Test/src/flexUnitTests/TestingTester.as
+++ b/FlexUnit4Test/src/flexUnitTests/TestingTester.as
@@ -1,3 +1,19 @@
+/*
+ * 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.TestCase;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
index 37422bc..c81bde8 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AllFrameworkTests.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
index 1ef7756..15ab6fd 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
 

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
index d1e60c1..9095ca3 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/AsynchronousValueDispatcher.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flash.events.Event;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
index d9ac0b7..f8c024c 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/ErrorTestCase.as
@@ -1,3 +1,19 @@
+/*
+ * 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.flexUnit1.framework
 {
    import flexunit.framework.*;

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/3b173d72/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
----------------------------------------------------------------------
diff --git a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
index d22fe0d..f734809 100644
--- a/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
+++ b/FlexUnit4Test/src/flexUnitTests/flexUnit1/framework/FailureTestCase.as
@@ -1 +1,17 @@
+/*
+ * 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.flexUnit1.framework
{
   import flexunit.framework.*;
   
   public class FailureTestCase extends TestCase
   {
       public function FailureTestCase(name : String):void
       {
           super(name);
       }
   
       public function testFailure():void
       {
           fail("intentional failure");
       }
   }
}
\ No newline at end of file


[32/41] git commit: renamed README.textile to README

Posted by cz...@apache.org.
renamed README.textile to README


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/b27d47b3
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/b27d47b3
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/b27d47b3

Branch: refs/heads/makeFlexUnitApacheReady
Commit: b27d47b35475f8e7149a444645c8a0ae71b050fc
Parents: d4b628a
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sun May 19 22:48:54 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sun May 19 22:48:54 2013 +0800

----------------------------------------------------------------------
 README         |   22 ++++++++++++++++++++++
 README.textile |   22 ----------------------
 2 files changed, 22 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/b27d47b3/README
----------------------------------------------------------------------
diff --git a/README b/README
new file mode 100644
index 0000000..a25e352
--- /dev/null
+++ b/README
@@ -0,0 +1,22 @@
+h2. FlexUnit: a unit testing framework for Flex and ActionScript 3.0
+
+FlexUnit is a unit testing framework for Flex and ActionScript 3.0 applications and libraries. It mimics the functionality of JUnit, a Java unit testing framework, and comes with a graphical test runner.
+
+h3. Features
+
+Some of FlexUnits features include:
+* Support for Flex or ActionScript 3
+* Mark tests with Metadata
+* Async testing support
+* Exception Handling
+* Theories, Datapoints and Assumptions
+
+A complete list of features can be found on "the FlexUnit homepage":http://flexunit.org
+
+h3. Documentation
+
+Documentation for FlexUnit can be found at "docs.flexunit.org":http://docs.flexunit.org
+
+h3. Code
+
+The code for FlexUnit can be found on "github":http://github.com/flexunit

http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/b27d47b3/README.textile
----------------------------------------------------------------------
diff --git a/README.textile b/README.textile
deleted file mode 100644
index 491ca63..0000000
--- a/README.textile
+++ /dev/null
@@ -1,22 +0,0 @@
-h2. FlexUnit: a unit testing framework for Flex and ActionScript 3.0
-
-FlexUnit is a unit testing framework for Flex and ActionScript 3.0 applications and libraries. It mimics the functionality of JUnit, a Java unit testing framework, and comes with a graphical test runner.
-
-h3. Features
-
-Some of FlexUnits features include:
-* Support for Flex or ActionScript 3
-* Mark tests with Metadata
-* Async testing support
-* Exception Handling
-* Theories, Datapoints and Assumptions
-
-A complete list of features can be found on "the FlexUnit homepage":http://flexunit.org
-
-h3. Documentation
-
-Documentation for FlexUnit can be found at "docs.flexunit.org":http://docs.flexunit.org
-
-h3. Code
-
-The code for FlexUnit can be found on "github":http://github.com/flexunit