FileDocCategorySizeDatePackage
InvalidPropertiesFormatExceptionTest.javaAPI DocAndroid 1.5 API1841Wed May 06 22:41:04 BST 2009org.apache.harmony.luni.tests.java.util

InvalidPropertiesFormatExceptionTest

public class InvalidPropertiesFormatExceptionTest extends TestCase

Fields Summary
Constructors Summary
Methods Summary
public voidtestInvalidPropertiesFormatExceptionString()

        assertNotNull(new InvalidPropertiesFormatException("String"));
        assertNotNull(new InvalidPropertiesFormatException((String)null));
    
public voidtestInvalidPropertiesFormatExceptionThrowable()

        assertNotNull(new InvalidPropertiesFormatException(new Exception()));
        assertNotNull(new InvalidPropertiesFormatException((Throwable)null));