01: package org.geotools.factory;
02:
03: import junit.framework.TestCase;
04:
05: public class CommonFactoryFinderTest extends TestCase {
06:
07: public void testGetStyleFactory() {
08: assertNotNull(CommonFactoryFinder.getStyleFactories(GeoTools
09: .getDefaultHints()));
10: }
11:
12: public void testGetFilterFactory() {
13: assertNotNull(CommonFactoryFinder.getFilterFactory(null));
14: }
15:
16: }
|