Whipped unit tests into shape. Added simple test for dobject transactions.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@978 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-09 07:50:04 +00:00
parent c57ff60e69
commit a1162ae85a
11 changed files with 79 additions and 93 deletions
@@ -1,5 +1,5 @@
//
// $Id: BundledTileSetRepositoryTest.java,v 1.5 2002/01/16 03:01:24 mdb Exp $
// $Id: BundledTileSetRepositoryTest.java,v 1.6 2002/02/09 07:50:04 mdb Exp $
package com.threerings.media.tile.bundle;
@@ -27,7 +27,8 @@ public class BundledTileSetRepositoryTest extends TestCase
new BundledTileSetRepository(rmgr, imgr, "tilesets");
Iterator sets = repo.enumerateTileSets();
while (sets.hasNext()) {
System.out.println(sets.next());
sets.next();
// System.out.println(sets.next());
}
} catch (Exception e) {
@@ -1,5 +1,5 @@
//
// $Id: XMLTileSetParserTest.java,v 1.3 2002/02/05 20:29:09 mdb Exp $
// $Id: XMLTileSetParserTest.java,v 1.4 2002/02/09 07:50:04 mdb Exp $
package com.threerings.media.tile.tools.xml;
@@ -34,7 +34,8 @@ public class XMLTileSetParserTest extends TestCase
// print them out
Iterator iter = sets.values().iterator();
while (iter.hasNext()) {
System.out.println(iter.next());
iter.next();
// System.out.println(iter.next());
}
} catch (IOException ioe) {