Merge remote-tracking branch 'PracticingFlex/master'

This commit is contained in:
Dan Buch
2012-03-03 20:11:20 -05:00
103 changed files with 4279 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package me.tests
{
import me.tests.cases.TestCase01;
import mx.core.Application;
import org.flexunit.Assert;
[Suite]
[RunWith("org.flexunit.runners.Suite")]
public class TestSuite extends Application
{
public var t1:TestCase01;
public function TestSuite():void
{
}
}
}

View File

@@ -0,0 +1,17 @@
package me.tests.cases
{
import org.flexunit.Assert;
public class TestCase01
{
public function TestCase01():void
{
}
[Test]
public function testMathIsRealistic():void
{
Assert.assertEquals(12, 2 * 6);
}
}
}