KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > atlassian > seraph > controller > TestNullSecurityController


1 package com.atlassian.seraph.controller;
2
3 import junit.framework.TestCase;
4
5 public class TestNullSecurityController extends TestCase
6 {
7     public TestNullSecurityController(String JavaDoc string)
8     {
9         super(string);
10     }
11
12     public void testAlwaysOn()
13     {
14         SecurityController controller = new NullSecurityController();
15         assertTrue(controller.isSecurityEnabled());
16     }
17 }
18
Popular Tags