FileDocCategorySizeDatePackage
NetPermissionTest.javaAPI DocAndroid 1.5 API2884Wed May 06 22:41:04 BST 2009tests.api.java.net

NetPermissionTest

public class NetPermissionTest extends TestCase

Fields Summary
Constructors Summary
Methods Summary
protected voidsetUp()
Sets up the fixture, for example, open a network connection. This method is called before a test is executed.

    
protected voidtearDown()
Tears down the fixture, for example, close a network connection. This method is called after a test is executed.

    
public voidtest_ConstructorLjava_lang_String()

tests
java.net.NetPermission#NetPermission(java.lang.String)

        // Test for method java.net.NetPermission(java.lang.String)
        NetPermission n = new NetPermission("requestPasswordAuthentication");
        assertEquals("Returned incorrect name", 
                "requestPasswordAuthentication", n.getName());
    
public voidtest_ConstructorLjava_lang_StringLjava_lang_String()

tests
java.net.NetPermission#NetPermission(java.lang.String, java.lang.String)

        // Test for method java.net.NetPermission(java.lang.String,
        // java.lang.String)
        NetPermission n = new NetPermission("requestPasswordAuthentication",
                null);
        assertEquals("Returned incorrect name", 
                "requestPasswordAuthentication", n.getName());
        NetPermission n1 = new NetPermission("requestPasswordAuthentication",
                "");
        assertEquals("", n1.getActions());