diff options
| author | Brian S. O'Neill <bronee@gmail.com> | 2008-03-25 05:38:00 +0000 |
|---|---|---|
| committer | Brian S. O'Neill <bronee@gmail.com> | 2008-03-25 05:38:00 +0000 |
| commit | cfe4ca5e637e07cb3087f5b3cc86ff0f42764a93 (patch) | |
| tree | 8b153dd403ce83d197826514278a8eaa3ed67b7f /src/test | |
| parent | 29e3e2b71ba9ac4b43c5b7d40da8a3dc8c6f365c (diff) | |
Fixes for bugs as reported by FindBugs.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/java/com/amazon/carbonado/info/TestChainedProperty.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/java/com/amazon/carbonado/info/TestChainedProperty.java b/src/test/java/com/amazon/carbonado/info/TestChainedProperty.java index 959a974..f302a59 100644 --- a/src/test/java/com/amazon/carbonado/info/TestChainedProperty.java +++ b/src/test/java/com/amazon/carbonado/info/TestChainedProperty.java @@ -272,6 +272,9 @@ public class TestChainedProperty extends TestCase { p5 = ChainedProperty.parse(info3, "(address).addressState");
assertEquals(p4, p2.append(p5));
+
+ ChainedProperty<Shipment> p6 = ChainedProperty.parse(info2, "(order).(address)");
+ assertEquals(p3, p.append(p6));
}
public void test_trim() {
|
