1 /* Copyright (C) 2006-2007  The Chemistry Development Kit (CDK) project
2  *
3  * Contact: cdk-devel@lists.sourceforge.net
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public License
7  * as published by the Free Software Foundation; either version 2.1
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  */
20 package org.openscience.cdk.tools;
21 
22 import org.junit.Assert;
23 import org.junit.Test;
24 import org.openscience.cdk.CDKTestCase;
25 import org.openscience.cdk.tools.DataFeatures;
26 
27 /**
28  * Included so that CoreCoverageTest won't complain. The class does not have
29  * methods, only constants, so there is nothing to test.
30  *
31  * @cdk.module test-core
32  *
33  * @see org.openscience.cdk.CDKConstants
34  */
35 public class DataFeaturesTest extends CDKTestCase {
36 
37     @Test
testDataFeatures()38     public void testDataFeatures() {
39         Assert.assertFalse(DataFeatures.HAS_2D_COORDINATES == -1);
40     }
41 
42     // FIXME: should add a test here that used introspection and test whether there
43     // are not constant conflicts
44 
45 }
46