18 lines
293 B
ActionScript
18 lines
293 B
ActionScript
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|