package com.baeldung.junit5vstestng; import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.Test; public class Class2UnitTest { @Test public void testCase_InClass2UnitTest() { assertTrue(true); } }