Skip to content

Commit 654049a

Browse files
committed
Fix test
1 parent b33754d commit 654049a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/test/communitycommons/XPathTest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,11 @@ public boolean hasChangedDateAttribute() {
276276
throw new UnsupportedOperationException("Unimplemented method 'hasChangedDateAttribute'");
277277
}
278278

279+
@Override
280+
public boolean hasChangedMemberValue(IContext context) {
281+
throw new UnsupportedOperationException("Unimplemented method 'hasChangedMemberValue'");
282+
}
283+
279284
@Override
280285
public boolean hasOwnerAttribute() {
281286
throw new UnsupportedOperationException("Unimplemented method 'hasOwnerAttribute'");
@@ -329,6 +334,11 @@ public boolean isNew() {
329334
public TestObject clone() {
330335
return new TestObject(id);
331336
}
337+
338+
@Override
339+
public TestObject createClone() {
340+
return new TestObject(id);
341+
}
332342
}
333343

334344
private static class TestProxy {

0 commit comments

Comments
 (0)