matcher 0.12.12 copy "matcher: ^0.12.12" to clipboard
matcher: ^0.12.12 copied to clipboard

Support for specifying test expectations via an extensible Matcher class. Also includes a number of built-in Matcher implementations for common cases.

Dart CI pub package package publisher

Support for specifying test expectations, such as for unit tests.

The matcher library provides a third-generation assertion mechanism, drawing inspiration from Hamcrest.

For more information, see Unit Testing with Dart.

Best Practices #

Prefer semantically meaningful matchers to comparing derived values #

Matchers which have knowledge of the semantics that are tested are able to emit more meaningful messages which don't require reading test source to understand why the test failed. For instance compare the failures between expect(someList.length, 1), and expect(someList, hasLength(1)):

// expect(someList.length, 1);
  Expected: <1>
    Actual: <2>
// expect(someList, hasLength(1));
  Expected: an object with length of <1>
    Actual: ['expected value', 'unexpected value']
     Which: has length of <2>

49
likes
0
pub points
100%
popularity

Publisher

verified publisherdart.cn

Support for specifying test expectations via an extensible Matcher class. Also includes a number of built-in Matcher implementations for common cases.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

stack_trace

More

Packages that depend on matcher