Sha256: d2fab572eb9220e5f3dcd0a3038239ed752e160ccdbd024ee6de3375267962f6

Contents?: true

Size: 602 Bytes

Versions: 39

Compression:

Stored size: 602 Bytes

Contents

import "package:test/test.dart";
import "package:hello_world/hello_world.dart";

void main() {
  group("HelloWorld", () {
    var helloWorld = new HelloWorld();

    test("should work", () {
      helloWorld.hello();
    });

    test("says hello world with no name", () {
      expect(helloWorld.hello(), equals("Hello, World!"));
    }, skip: true);

    test("says hello to bob", () {
      expect(helloWorld.hello("Bob"), equals("Hello, Bob!"));
    }, skip: true);

    test("says hello to sally", () {
      expect(helloWorld.hello("Sally"), equals("Hello, Sally!"));
    }, skip: true);
  });
}

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
trackler-2.2.1.4 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.3 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.2 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.1 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.0 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.0.6 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.0.5 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.0.4 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.0.3 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.0.2 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.0.1 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.0.0 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.1.0.55 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.1.0.54 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.1.0.53 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.1.0.52 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.1.0.51 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.1.0.50 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.1.0.49 tracks/dart/exercises/hello-world/test/hello_world_test.dart