box-o-sand/flex-practice/custom-03g1-debugging/me/tests/cases/TestCase01.as

18 lines
293 B
ActionScript
Raw Normal View History

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