NetPermissionTestpublic class NetPermissionTest extends TestCase
Methods Summary |
---|
protected void | setUp()Sets up the fixture, for example, open a network connection. This method
is called before a test is executed.
| protected void | tearDown()Tears down the fixture, for example, close a network connection. This
method is called after a test is executed.
| public void | test_ConstructorLjava_lang_String()
// Test for method java.net.NetPermission(java.lang.String)
NetPermission n = new NetPermission("requestPasswordAuthentication");
assertEquals("Returned incorrect name",
"requestPasswordAuthentication", n.getName());
| public void | test_ConstructorLjava_lang_StringLjava_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());
|
|