Based on answer in this link, created a test suite with Test classes
@RunWith(Suite::class)
@Suite.SuiteClasses(
    DTOtoEntityMapperTest::class,
    PostDataSourceCoroutinesTest::class,
    PostDataSourceRxJava3Test::class
)
class JUnit5TestSuite
Returns error
org.junit.runners.model.InvalidTestClassError: Invalid test class 'com.x.DTOtoEntityMapperTest':
  1. No runnable methods
But every test class added has test methods and runs individually for instance
class DTOtoEntityMapperTest {
    private val postDTOList by lazy {
        convertFromJsonToObjectList<PostDTO>(getResourceAsText(RESPONSE_JSON_PATH))!!
    }
    private val postEntityList by lazy {
        convertFromJsonToObjectList<PostEntity>(getResourceAsText(RESPONSE_JSON_PATH))!!
    }
    @Test
    fun `given PostDTO is input, should return PostEntity`() {
        val mapper = DTOtoEntityMapper()
        // GIVEN
        val expected = postEntityList
        // WHEN
        val actual = mapper.map(postDTOList)
        // THEN
        Truth.assertThat(actual).containsExactlyElementsIn(expected)
    }
}