more futzing with flexunit 4, about to switch from GNU make to Ant

This commit is contained in:
Dan Buch
2010-02-24 21:03:28 -05:00
parent de198dc590
commit 22ba96dbdd
6 changed files with 167 additions and 76 deletions

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);
}
}
}