starting to build this thing
This commit is contained in:
parent
59cd8f66d0
commit
d8be4085b5
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
*~
|
||||||
|
*.n
|
6
Makefile
Normal file
6
Makefile
Normal 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
5
classes/XMLReader.hx
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
class XMLReader {
|
||||||
|
public function new() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
4
test.hxml
Normal file
4
test.hxml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
-main HubbleSiteDailyImageChumbyTestRunner
|
||||||
|
-neko HubbleSiteDailyImageChumbyTestRunner.n
|
||||||
|
-cp classes
|
||||||
|
-cp test
|
7
test/HubbleSiteDailyImageChumbyTestRunner.hx
Normal file
7
test/HubbleSiteDailyImageChumbyTestRunner.hx
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
class HubbleSiteDailyImageChumbyTestRunner {
|
||||||
|
static function main() {
|
||||||
|
var r = new haxe.unit.TestRunner();
|
||||||
|
r.add(new RemoteXMLReaderTest());
|
||||||
|
r.run();
|
||||||
|
}
|
||||||
|
}
|
11
test/RemoteXMLReaderTest.hx
Normal file
11
test/RemoteXMLReaderTest.hx
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user