PageRenderTime 193ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/rcdkjar/src/org/guha/rcdk/test/DescTest.java

http://github.com/rajarshi/cdkr
Java | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | 6cf922d5a418294a030ab7e0bcbd2c2b MD5 | raw file
  1. package org.guha.rcdk.test;
  2. import junit.framework.Assert;
  3. import junit.framework.TestCase;
  4. import org.guha.rcdk.descriptors.DescriptorUtilities;
  5. public class DescTest extends TestCase {
  6. String home = "/Users/rguha/";
  7. public void testDNames() {
  8. String[] dn = DescriptorUtilities.getDescriptorNamesByCategory("topological");
  9. Assert.assertNotNull(dn);
  10. Assert.assertTrue(dn.length > 0);
  11. }
  12. }