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