Yields the Interesting instance method wrapped in a function object.
| 902 | |
| 903 | // Yields the Interesting instance method wrapped in a function object. |
| 904 | Shrinker::InterestingnessFunction AsFunction() { |
| 905 | return std::bind(&InterestingnessTest::Interesting, this, |
| 906 | std::placeholders::_1, std::placeholders::_2); |
| 907 | } |
| 908 | }; |
| 909 | |
| 910 | // A test that says all binaries are interesting. |
no outgoing calls
no test coverage detected