Deprecate the mirror matchers library (#131)

I cannot find usage. Asserting that an object has a property with a
known name can be accomplished by casting to `dynamic` and attempting to
read from that property. Asserting that an object has a property with a
name that is unknown at compile time has no known use case, if it comes
up it would re rare enough that the code for using mirrors to solve it
can be put into the test.
4 files changed
tree: 4edf3ec57b0abba5d5b4227b5a49123ac9d459eb
  1. lib/
  2. test/
  3. .gitignore
  4. .test_config
  5. .travis.yml
  6. analysis_options.yaml
  7. CHANGELOG.md
  8. LICENSE
  9. pubspec.yaml
  10. README.md
README.md

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.