We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8af1d6 commit 73c386bCopy full SHA for 73c386b
javalite-common/src/test/java/org/javalite/common/test/ExpectationTest.java
@@ -146,4 +146,11 @@ public class A {
146
public void shouldTestBooleanMethodWithCamelCase(){
147
the(new A()).shouldBe("knownAsRole");
148
}
149
+
150
+ @Test
151
+ public void shouldTestContainsStrings(){
152
+ List<String> numbers = list("one", "two", "three");
153
+ the(numbers).shouldContain("one");
154
+ the(numbers).shouldNotContain("four");
155
+ }
156
0 commit comments