diff options
Diffstat (limited to 'src/test/java/edu/brown/cs/student/TransactionTest.java')
-rw-r--r-- | src/test/java/edu/brown/cs/student/TransactionTest.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/java/edu/brown/cs/student/TransactionTest.java b/src/test/java/edu/brown/cs/student/TransactionTest.java index e8b95bc..faf24fb 100644 --- a/src/test/java/edu/brown/cs/student/TransactionTest.java +++ b/src/test/java/edu/brown/cs/student/TransactionTest.java @@ -95,4 +95,13 @@ public class TransactionTest { tearDown(); } + @Test + public void badFormats(){ + setUp(); + // TODO: ensure 0 price trades aren't there, market trades aren't there, .00 on end of ints, etc... + // no price -> https://www.sec.gov/Archives/edgar/data/1654595/000110465921048974/tm2112683-1_4seq1.xml + // market form -> https://www.sec.gov/Archives/edgar/data/39899/000121465921004094/marketforms-52237.xml + tearDown(); + } + } |