I use google’s truth as my assert library, when I ...
# getting-started
s
I use google’s truth as my assert library, when I use the assert of int’s instance like this:
assertThat(100).isInstanceOf(Int::class.java)
It raised an error:
Not true that <100> is an instance of <int>. It is an instance of <java.lang.Integer>
Any ideas to fix this issue?