| 35 | } |
| 36 | |
| 37 | @Nested |
| 38 | class get { |
| 39 | @Test |
| 40 | void simple() { |
| 41 | final ImString str = new ImString("test"); |
| 42 | assertEquals("test", str.get()); |
| 43 | assertEquals(str.get(), str.toString(), "ImString#toString() must return value which should be equal to ImString#get()"); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | @Nested |
| 48 | class set { |
no outgoing calls
no test coverage detected