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

Version Path
trackler-2.0.1.0 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.10 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.9 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.8 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.7 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.6 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.5 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.4 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.3 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.2 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.1 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-2.0.0.0 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.4.1 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.4.0 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.3.0 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.2.1 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.2.0 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.1.2 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.1.1 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy
trackler-1.0.1.0 tracks/groovy/exercises/hello-world/HelloWorldTest.groovy