SPR-5619 - (OpenSessionInViewTests, ClassUtilTests fixed)

Update org.sf.web/.classpath to refer to tiles 2.1.2
This commit is contained in:
Mark Pollack
2009-07-10 03:30:12 +00:00
parent 8c9346718b
commit 69422e771f
6 changed files with 774 additions and 690 deletions

View File

@@ -129,17 +129,6 @@ public class ClassUtilsTests extends TestCase {
assertEquals("Class name did not match", "ClassUtilsTests.InnerClass", className);
}
@Ignore
public void ignoreTestGetShortNameForCglibClass() {
// TestBean tb = new TestBean();
// ProxyFactory pf = new ProxyFactory();
// pf.setTarget(tb);
// pf.setProxyTargetClass(true);
// TestBean proxy = (TestBean) pf.getProxy();
// String className = ClassUtils.getShortName(proxy.getClass());
// assertEquals("Class name did not match", "TestBean", className);
}
public void testGetShortNameAsProperty() {
String shortName = ClassUtils.getShortNameAsProperty(this.getClass());
assertEquals("Class name did not match", "classUtilsTests", shortName);