ReflectPermissionTestpublic class ReflectPermissionTest 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.lang.reflect.ReflectPermission(java.lang.String)
String permString = new ReflectPermission("Blah").toString();
assertTrue("Incorrect permission constructed", permString.indexOf(
"java.lang.reflect.ReflectPermission Blah") >= 0);
| public void | test_ConstructorLjava_lang_StringLjava_lang_String()
// Test for method java.lang.reflect.ReflectPermission(java.lang.String,
// java.lang.String)
assertTrue("Incorrect permission constructed", new ReflectPermission(
"Blah", "suppressAccessChecks").toString().indexOf(
"java.lang.reflect.ReflectPermission Blah") >= 0);
|
|