ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/EntryTest.java
(Generate patch)

Comparing jsr166/src/test/tck/EntryTest.java (file contents):
Revision 1.8 by jsr166, Fri May 27 19:41:25 2011 UTC vs.
Revision 1.10 by jsr166, Tue May 31 16:16:23 2011 UTC

# Line 6 | Line 6
6  
7   import junit.framework.*;
8   import java.util.*;
9 import java.util.concurrent.*;
10 import java.io.*;
9  
10   public class EntryTest extends JSR166TestCase {
11      public static void main(String[] args) {
# Line 116 | Line 114 | public class EntryTest extends JSR166Tes
114      /**
115       * setValue for SimpleImmutableEntry throws UnsupportedOperationException
116       */
117 <    public void testsetValue2() {
117 >    public void testSetValue2() {
118          Map.Entry s2 = new AbstractMap.SimpleImmutableEntry(k1, v1);
119          Map.Entry s = new AbstractMap.SimpleImmutableEntry(s2);
120          assertEquals(k1, s.getKey());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines