Mercurial > hg > Members > sugi > javafx
annotate src/aquarium/test/local/StartCodeSegment.java @ 5:1245abe6625f
add TEST Class
author | e095732 |
---|---|
date | Mon, 28 Jan 2013 00:25:01 +0900 |
parents | |
children | b973de8b6785 |
rev | line source |
---|---|
5 | 1 package aquarium.test.local; |
2 | |
3 import alice.codesegment.CodeSegment; | |
4 import alice.test.topology.aquarium.fx.Aquarium; | |
5 | |
6 | |
7 public class StartCodeSegment extends CodeSegment { | |
8 | |
9 @Override | |
10 public void run() { | |
11 ods.put("local", "objCnt", 4); | |
12 Aquarium aqua = new Aquarium(); | |
13 aqua.run(); | |
14 } | |
15 | |
16 | |
17 } |