How can I write the following assertion:
org.junit.Assert.assertTrue(result.any { it.name == "Foo" })
with Google Truth assertThat
?
com.google.common.truth.Truth.assertThat(result...
How can I write the following assertion:
org.junit.Assert.assertTrue(result.any { it.name == "Foo" })
with Google Truth assertThat
?
com.google.common.truth.Truth.assertThat(result...
Copyright © 2021 Jogjafile Inc.
Provided that I'm not familiar with Google Truth (hence I don't know if there's an idiomatic way to write it), I would write that assertion like this:
or, you can keep the original version:
Playing a bit with it, you could even do:
However, the latter doesn't look very readable, so I'd stick with the first one.