Mustafa Ozhan
03/05/2022, 12:25 PMassertIs method in whole instance checks in my tests, and I replaced many of
assertTrue { it is SomeClass } with assertIs<SomeClass>(it)
Now, I am checking my coverage and it decreased, all the assertIs methods seems partially covered
Is it expected? are they really partially covered ?Klitos Kyriacou
03/05/2022, 6:30 PMMustafa Ozhan
03/05/2022, 6:56 PMassertIs is ? This is a method from kotlin standard libraryFleshgrinder
03/05/2022, 7:49 PM