|
Revision 22369, 498 bytes
(checked in by lyokato, 5 years ago)
|
|
lang/actionscript/as3orm: add tests
|
| Line | |
|---|
| 1 | package suite |
|---|
| 2 | { |
|---|
| 3 | import flexunit.framework.TestCase; |
|---|
| 4 | import flexunit.framework.TestSuite; |
|---|
| 5 | import org.coderepos.as3orm.SQLCriteria; |
|---|
| 6 | |
|---|
| 7 | public class SQLCriteriaTest extends TestCase |
|---|
| 8 | { |
|---|
| 9 | public function SQLCriteriaTest(method:String) |
|---|
| 10 | { |
|---|
| 11 | super(method); |
|---|
| 12 | } |
|---|
| 13 | |
|---|
| 14 | public static function suite():TestSuite |
|---|
| 15 | { |
|---|
| 16 | var ts:TestSuite = new TestSuite(); |
|---|
| 17 | ts.addTest(new SQLCriteriaTest("testLoad")); |
|---|
| 18 | return ts; |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | public function testLoad():void |
|---|
| 22 | { |
|---|
| 23 | |
|---|
| 24 | } |
|---|
| 25 | } |
|---|
| 26 | |
|---|
| 27 | } |
|---|