starting to build this thing

This commit is contained in:
John Bintz 2009-06-10 17:53:11 -04:00
parent 59cd8f66d0
commit d8be4085b5
6 changed files with 35 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*~
*.n

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
test: force_look
haxe test.hxml && neko HubbleSiteDailyImageChumbyTestRunner.n
rm HubbleSiteDailyImageChumbyTestRunner.n
force_look:
true

5
classes/XMLReader.hx Normal file
View File

@ -0,0 +1,5 @@
class XMLReader {
public function new() {
}
}

4
test.hxml Normal file
View File

@ -0,0 +1,4 @@
-main HubbleSiteDailyImageChumbyTestRunner
-neko HubbleSiteDailyImageChumbyTestRunner.n
-cp classes
-cp test

View File

@ -0,0 +1,7 @@
class HubbleSiteDailyImageChumbyTestRunner {
static function main() {
var r = new haxe.unit.TestRunner();
r.add(new RemoteXMLReaderTest());
r.run();
}
}

View File

@ -0,0 +1,11 @@
class RemoteXMLReaderTest extends haxe.unit.TestCase {
private var xr : XMLReader;
override function setup() {
this.xr = new XMLReader();
}
function testParseXML() {
assertTrue(true);
}
}