Best Kotest code snippet using io.kotest.matchers.collections.matchers.containAnyOf
matchers.kt
Source:matchers.kt
...95infix fun <T> Array<T>.shouldNotExistInOrder(expected: List<(T) -> Boolean>) = asList().shouldNotExistInOrder(expected)96infix fun <T> List<T>.shouldNotExistInOrder(expected: List<(T) -> Boolean>) = this shouldNot existInOrder(expected)97fun <T> Iterable<T>.shouldContainAnyOf(vararg ts: T) = toList().shouldContainAnyOf(ts)98fun <T> Array<T>.shouldContainAnyOf(vararg ts: T) = asList().shouldContainAnyOf(ts)99fun <T> Collection<T>.shouldContainAnyOf(vararg ts: T) = this should containAnyOf(ts.asList())100fun <T> Iterable<T>.shouldNotContainAnyOf(vararg ts: T) = toList().shouldNotContainAnyOf(ts)101fun <T> Array<T>.shouldNotContainAnyOf(vararg ts: T) = asList().shouldNotContainAnyOf(ts)102fun <T> Collection<T>.shouldNotContainAnyOf(vararg ts: T) = this shouldNot containAnyOf(ts.asList())103infix fun <T> Iterable<T>.shouldContainAnyOf(ts: Collection<T>) = toList().shouldContainAnyOf(ts)104infix fun <T> Array<T>.shouldContainAnyOf(ts: Collection<T>) = asList().shouldContainAnyOf(ts)105infix fun <T> Collection<T>.shouldContainAnyOf(ts: Collection<T>) = this should containAnyOf(ts)106infix fun <T> Iterable<T>.shouldNotContainAnyOf(ts: Collection<T>) = toList().shouldNotContainAnyOf(ts)107infix fun <T> Array<T>.shouldNotContainAnyOf(ts: Collection<T>) = asList().shouldNotContainAnyOf(ts)108infix fun <T> Collection<T>.shouldNotContainAnyOf(ts: Collection<T>) = this shouldNot containAnyOf(ts)109fun <T> containAnyOf(ts: Collection<T>) = object : Matcher<Collection<T>> {110 override fun test(value: Collection<T>): MatcherResult {111 if (ts.isEmpty()) throwEmptyCollectionError()112 return MatcherResult(113 ts.any { it in value },114 { "Collection ${value.print().value} should contain any of ${ts.print().value}" },115 { "Collection ${value.print().value} should not contain any of ${ts.print().value}" }116 )117 }118}119internal fun throwEmptyCollectionError(): Nothing {120 throw AssertionError("Asserting content on empty collection. Use Collection.shouldBeEmpty() instead.")121}...
containAnyOf
Using AI Code Generation
1val list = listOf(1, 2, 3, 4, 5)2list should containAnyOf(1, 2, 3)3list shouldNot containAnyOf(6, 7, 8)4val list = listOf(1, 2, 3, 4, 5)5list should containAllOf(1, 2, 3)6list shouldNot containAllOf(6, 7, 8)7val list = listOf(1, 2, 3, 4, 5)8list should haveSize(5)9list shouldNot haveSize(6)10val list = listOf(1, 2, 3, 4, 5)11list should haveSize(5)12list shouldNot haveSize(6)13val list = listOf(1, 2, 3, 4, 5)14list should haveSize(5)15list shouldNot haveSize(6)16val list = listOf(1, 2, 3, 4, 5)17list should haveSize(5)18list shouldNot haveSize(6)19val list = listOf(1, 2, 3, 4, 5)20list should haveSize(5)21list shouldNot haveSize(6)22val list = listOf(1, 2, 3, 4, 5)23list should haveSize(5)24list shouldNot haveSize(6)25val list = listOf(1, 2, 3, 4, 5)26list should haveSize(5)27list shouldNot haveSize(6)
containAnyOf
Using AI Code Generation
1val list = listOf(1, 2, 3)2list should containAnyOf(2, 4)3val list = listOf(1, 2, 3)4list should containAllOf(1, 2)5val list = listOf(1, 2, 3)6list should containNoneOf(4, 5)7val list = listOf(1, 2, 3)8list should haveElement(1)9val list = listOf(1, 2, 3)10list should haveElements(1, 2, 3)11val list = listOf(1, 2, 3)12list should haveSize(3)13val list = listOf(1, 2, 3)14list should haveSingleElement(1)15val list = listOf(1, 2, 3)16list should haveSingleElement(1)17val list = listOf(1, 2, 3)18list should haveSingleElement(1)19val list = listOf(1, 2, 3)20list should beEmpty()21val list = listOf(1, 2, 3)22list shouldNot beEmpty()23val list = listOf(1, 2, 3)24list shouldContainAll listOf(1, 2)
containAnyOf
Using AI Code Generation
1val list = listOf(1, 2, 3)2list should containAnyOf(1, 2, 3)3list should containAnyOf(1, 2)4list should containAnyOf(1)5list should containAnyOf(4)6list shouldNot containAnyOf(4)7val list = listOf(1, 2, 3)8list shouldNot containNoneOf(1, 2, 3)9list shouldNot containNoneOf(1, 2)10list shouldNot containNoneOf(1)11list should containNoneOf(4)12list should containNoneOf(4)13val list = listOf(1, 2, 3)14list should containExactly(1, 2, 3)15list should containExactly(1, 3, 2)16list should containExactly(2, 1, 3)17list should containExactly(2, 3, 1)18list should containExactly(3, 1, 2)19list should containExactly(3, 2, 1)20list shouldNot containExactly(1, 2)21list shouldNot containExactly(1, 3)22list shouldNot containExactly(2, 3)23list shouldNot containExactly(4, 5)24list shouldNot containExactly(4)25val list = listOf(1, 2, 3)26list should containExactlyInAnyOrder(1, 2, 3)27list should containExactlyInAnyOrder(1, 3, 2)28list should containExactlyInAnyOrder(2, 1, 3)29list should containExactlyInAnyOrder(2, 3, 1)30list should containExactlyInAnyOrder(3, 1, 2)31list should containExactlyInAnyOrder(3, 2, 1)32list shouldNot containExactlyInAnyOrder(1, 2)33list shouldNot containExactlyInAnyOrder(1, 3)34list shouldNot containExactlyInAnyOrder(2, 3)35list shouldNot containExactlyInAnyOrder(4, 5)
containAnyOf
Using AI Code Generation
1val list = listOf("a", "b", "c")2list.shouldContainAnyOf("a", "d", "e")3val list = listOf("a", "b", "c")4list.shouldContainNoneOf("d", "e", "f")5val list = listOf("a", "b", "c")6list.shouldContainExactly("a", "b", "c")7val list = listOf("a", "b", "c")8list.shouldContainExactlyInAnyOrder("c", "b", "a")9val list = listOf("a", "b", "c")10list.shouldContainNone { it == "d" }11val list = listOf("a", "b", "c")12list.shouldContainAll("a", "b")13val list = listOf("a", "b", "c")14list.shouldContainAllInAnyOrder("b", "a")15val list = listOf("a", "b", "c")16list.shouldContainAllInOrder("a", "b")17val list = listOf("a", "b", "c")18list.shouldContainExactlyInAnyOrder("c", "b", "a")19val list = listOf("a", "b", "c")20list.shouldContainExactlyInOrder("a", "b", "c")21val list = listOf("a", "b", "c")22list.shouldContainExactlyInOrder("a", "b", "c")
containAnyOf
Using AI Code Generation
1val list = listOf(1, 2, 3)2val list = listOf(1, 2, 3)3val list = listOf(1, 2, 3)4val list = listOf(1, 2, 3)5val list = listOf(1, 2, 3)6val list = listOf(1, 2, 3)
containAnyOf
Using AI Code Generation
1val list = listOf(1,2,3,4,5)2list.shouldContainAnyOf(1,3,5)3val list = listOf(1,2,3,4,5)4list.shouldContainAllOf(1,3,5)5val list = listOf(1,2,3,4,5)6list.shouldContainNoneOf(6,7,8)7val list = listOf(1,2,3,4,5)8list.shouldContainExactly(1,2,3,4,5)9val list = listOf(1,2,3,4,5)10list.shouldContainExactlyInAnyOrder(5,3,2,1,4)11val list = listOf(1,2,3,4,5)12list.shouldContainInOrder(1,2,3,4,5)13val list = listOf(1,2,3,4,5)14list.shouldContainInOrderOnly(1,2,3,4,5)15val map = mapOf("a" to 1, "b" to 2, "c" to 3)16map.shouldContainInOrderOnlyEntries("a" to 1, "b" to 2, "c" to 3)17val list = listOf(null, null, null)18list.shouldContainInOrderOnlyNulls()19val list = listOf(null, null, null)20list.shouldContainInOrderOnlyNulls()
containAnyOf
Using AI Code Generation
1 import io.kotest.matchers.collections.*2 import io.kotest.core.spec.style.StringSpec3 class Test : StringSpec({4 "test" {5 val list = listOf("a", "b", "c")6 list should containAnyOf("a", "d")7 }8 })9 import io.kotest.matchers.collections.*10 import io.kotest.core.spec.style.StringSpec11 class Test : StringSpec({12 "test" {13 val list = listOf("a", "b", "c")14 list should containAll("a", "b")15 }16 })17 import io.kotest.matchers.collections.*18 import io.kotest.core.spec.style.StringSpec19 class Test : StringSpec({20 "test" {21 val list = listOf("a", "b", "c")22 list should containNone("d")23 }24 })25 import io.kotest.matchers.collections.*26 import io.kotest.core.spec.style.StringSpec27 class Test : StringSpec({28 "test" {29 val list = listOf("a", "b", "c")30 list should haveElement("a")31 }32 })33 import io.kotest.matchers.collections.*34 import io.kotest.core.spec.style.StringSpec35 class Test : StringSpec({36 "test" {37 val list = listOf("a", "b", "c")38 list should haveSize(3)39 }40 })41 import io.kotest.matchers.collections.*42 import io.kotest.core.spec.style.StringSpec43 class Test : StringSpec({44 "test" {45 val list = listOf("a", "b", "c")46 list should haveSizeLessThan(4)47 }48 })
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!