Sha256: b4b169fbe6fefb2d6827baf63fc1d5a41f22e7f7990a574d52529689bf5ef556
Contents?: true
Size: 396 Bytes
Versions: 22
Compression:
Stored size: 396 Bytes
Contents
import org.junit.Test import static org.junit.Assert.assertTrue class HelloWorldTest { @Test void testNoName() { assertTrue new HelloWorld().hello() == 'Hello, World!' } @Test void testSampleName() { assertTrue new HelloWorld().hello('Alice') == 'Hello, Alice!' } @Test void testAnotherSampleName() { assertTrue new HelloWorld().hello('Bob') == 'Hello, Bob!' } }
Version data entries
22 entries across 22 versions & 1 rubygems