期待値を指定するときに OR 操作を行うにはどうすればよいですか? 引数は 10 または 11 のいずれかです。
public void testGetRandom() {
context.checking(new Expectations() {{
oneOf (myrandom).isSpecific(10) **OR** oneOf (myrandom).isSpecific(11);
}});
context.assertIsSatisfied();
}