net.sourceforge.sqlunit.matchers |
Matcher plug-ins for SQLUnit. Matcher plug-in classes define rules to match between two columns. The default matching is an exact match, but Matchers can be built that match within a percentage or a range. This is not an exhaustive list, more are expected to be added as users contribute them.
|
Java Source File Name | Type | Comment |
AllOrNothingMatcher.java | Class | The AllOrNothingMatcher is an implementation of the IMatcher interface
used to define rulesets for matching columns in SQLUnit. |
ExpressionMatcher.java | Class | Allows the caller to specify an expression in Apache JEXL (Java Extended
Expression Language). |
ForgivingNullMatcher.java | Class | The ForgivingNullMatcher is an implementation of the IMatcher interface
used to compare values you know are either supposed to be NULL (but might
be textually represented differently) or are actually equal. |
PercentageRangeMatcher.java | Class | The PercentageRangeMatcher is an implementation of the IMatcher interface
used to define rulesets for matching columns in SQLUnit. |
RangeMatcher.java | Class | The RangeMatcher is an implementation of the IMatcher interface
used to define rulesets for matching columns in SQLUnit. |
SignificantDigitsMatcher.java | Class | The SignificantDigitsMatcher is an implementation of the IMatcher interface
used to compare FLOAT values where you only really care about matching to a
certain number of significant digits to the right of the decimal. |
TypelessMatcher.java | Class | The TypelessMatcher matches column values only from two different
SQL or stored procedure calls. |
TypelessPercentageMatcher.java | Class | The TypelessPercentageMatcher matches columns which may differ by a
specified percentage. |