(no commit message)
[utils] / support / general / src / test / java / org / wamblee / general / ObjectElemTest.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.general;
17
18 import org.junit.Test;
19
20 import static junit.framework.TestCase.*;
21
22 public class ObjectElemTest {
23
24     @Test
25     public void testSameObjectEqual() {
26         String s = "x";
27         ObjectElem s1 = new ObjectElem(s);
28         ObjectElem s2 = new ObjectElem(s);
29         assertEquals(s1, s2);
30     }
31
32     @Test
33     public void testDifferentButEqualObjectsNotEqual() {
34         String s = new String("x");
35         ObjectElem se = new ObjectElem(s);
36         String t = new String("x");
37         ObjectElem te = new ObjectElem(t);
38         assertEquals(s, t);
39         assertNotSame(s, t);
40         assertFalse(se.equals(te));
41     }
42
43     @Test
44     public void testNull() {
45         ObjectElem se = new ObjectElem("x");
46         assertFalse(se.equals(null));
47     }
48
49     @Test
50     public void testWrongType() {
51         ObjectElem se = new ObjectElem("x");
52         assertFalse(se.equals("x"));
53     }
54
55 }