divinenickname / utgen-kotlin-core

This is a library designed to generate unit tests for Kotlin language. Simplify your testing process with automated test generation tailored for Kotlin codebases.
Apache License 2.0
3 stars 0 forks source link

feature: nullable return object test #8

Closed divinenickname closed 8 months ago

divinenickname commented 8 months ago

Example method: fun test(): ResponseObj? {}

Generator should generate at least two test cases:

@Test
fun test_returnNull() {
    Assertions.assertNull(obj.test())
}

By the way, don't forget add import