1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.ldap.server.jndi;
18
19
20 import org.apache.ldap.server.AbstractAdminTestCase;
21
22
23 /***
24 * Confirms the removal of the comparator serialization bug filed here in JIRA:
25 * <a href="http://nagoya.apache.org/jira/browse/DIREVE-54">DIREVE-54</a>.
26 *
27 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
28 * @version $Rev: 264732 $
29 */
30 public class ComparatorNPEBugTest extends AbstractAdminTestCase
31 {
32 public ComparatorNPEBugTest()
33 {
34 super.doDelete = false;
35 }
36
37
38 /***
39 * Test runs first to initialize the system.
40 */
41 public void testAAA() {}
42
43
44 /***
45 * This test fails currently.
46 */
47 public void testZZZ() {}
48 }