1 package org.apache.torque.engine.platform; 2 3 18 19 import junit.framework.TestCase; 20 21 25 public class PlatformFactoryTest extends TestCase 26 { 27 28 public void testGetPlatformFor() 29 { 30 Platform platform = PlatformFactory.getPlatformFor("mysql"); 31 assertTrue("org.apache.torque.engine.platform.PlatformMysqlImpl" 32 .equals(platform.getClass().getName())); 33 } 34 35 } 36 | Popular Tags |