()
| 98 | } |
| 99 | |
| 100 | @Test |
| 101 | public void copyChanges() throws Exception { |
| 102 | final Tree tree = buildTestTree(); |
| 103 | final Tree tree2 = buildTestTree(); |
| 104 | tree2.setName("Different Tree"); |
| 105 | assertTrue(tree.copyChanges(tree2, false)); |
| 106 | assertEquals("Different Tree", tree.getName()); |
| 107 | } |
| 108 | |
| 109 | @Test |
| 110 | public void copyChangesNone() throws Exception { |
nothing calls this directly
no test coverage detected