| 1 |
package |
|---|
| 2 |
{ |
|---|
| 3 |
import onMemory.OnMemoryConstructorTest; |
|---|
| 4 |
import onMemory.OnMemoryInsertTest; |
|---|
| 5 |
import onMemory.OnMemoryReadTest; |
|---|
| 6 |
import onMemory.OnMemoryUpdateTest; |
|---|
| 7 |
/** |
|---|
| 8 |
* オンメモリデータベースのテストを実行します。 |
|---|
| 9 |
* @author Kazushi Tominaga (Seacolor) |
|---|
| 10 |
*/ |
|---|
| 11 |
[Suite] |
|---|
| 12 |
[RunWith("org.flexunit.runners.Suite")] |
|---|
| 13 |
public class OnMemoryTest |
|---|
| 14 |
{ |
|---|
| 15 |
/** |
|---|
| 16 |
* @private |
|---|
| 17 |
*/ |
|---|
| 18 |
public var t1:OnMemoryConstructorTest; |
|---|
| 19 |
/** |
|---|
| 20 |
* @private |
|---|
| 21 |
*/ |
|---|
| 22 |
public var t2:OnMemoryInsertTest; |
|---|
| 23 |
/** |
|---|
| 24 |
* @private |
|---|
| 25 |
*/ |
|---|
| 26 |
public var t3:OnMemoryUpdateTest; |
|---|
| 27 |
/** |
|---|
| 28 |
* @private |
|---|
| 29 |
*/ |
|---|
| 30 |
public var t4:OnMemoryReadTest; |
|---|
| 31 |
} |
|---|
| 32 |
|
|---|
| 33 |
} |
|---|