Updated the negative blackbox test values.

git-svn-id: https://zxing.googlecode.com/svn/trunk@1567 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
dswitkin@google.com 2010-08-26 14:55:17 +00:00
parent 84b6b3d57b
commit 1ba5eceeb2
2 changed files with 8 additions and 8 deletions

View file

@ -27,10 +27,10 @@ public final class FalsePositivesBlackBoxTestCase extends AbstractNegativeBlackB
public FalsePositivesBlackBoxTestCase() {
super("test/data/blackbox/falsepositives");
addTest(2, 0.0f);
addTest(1, 90.0f);
addTest(1, 180.0f);
addTest(2, 270.0f);
addTest(1, 0.0f);
addTest(0, 90.0f);
addTest(0, 180.0f);
addTest(1, 270.0f);
}
}

View file

@ -27,10 +27,10 @@ public final class UnsupportedBlackBoxTestCase extends AbstractNegativeBlackBoxT
public UnsupportedBlackBoxTestCase() {
super("test/data/blackbox/unsupported");
addTest(1, 0.0f);
addTest(1, 90.0f);
addTest(1, 180.0f);
addTest(1, 270.0f);
addTest(0, 0.0f);
addTest(0, 90.0f);
addTest(0, 180.0f);
addTest(0, 270.0f);
}
}