* Verify that the value is in the container. * Throws: UnitTestException on failure
5.shouldBeIn([5: "foo"]); struct AA { int onlyKey; bool opBinaryRight(string op)(in int key) const { return key == onlyKey; } } 5.shouldBeIn(AA(5)); assertFail(5.shouldBeIn(AA(4)));
See Implementation
* Verify that the value is in the container. * Throws: UnitTestException on failure