Skip to content

Commit

Permalink
removed unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich Apodaca committed Jun 13, 2009
1 parent a4730ab commit a00365b
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/com/metamolecular/mx/test/QueryTest.java
Expand Up @@ -168,25 +168,6 @@ public void testItShouldReturnABenzeneTemplateThatMatchesToluene()
assertTrue(matches(query, toluene));
}

public void testItShouldNotThrowWhenCreatingFromCopiedMolecule()
{
// Molecule propane = Molecules.createPropane();
// Molecule copy = propane.copy();
//
// System.out.println(copy.getBond(0).getSource().getIndex());
//
// System.out.println(new MolfileWriter().write(copy));
//
// try
// {
// query = new DefaultQuery(copy);
// }
// catch (Exception e)
// {
// fail(e.toString());
// }
}

private boolean matches(Query query, Molecule molecule)
{
for (int i = 0; i < query.countNodes(); i++)
Expand Down

0 comments on commit a00365b

Please sign in to comment.