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.24 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.23 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.22 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.21 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.20 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.19 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.18 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.17 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.16 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.15 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.14 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.13 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.12 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.11 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.10 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.9 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.8 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.7 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.6 tracks/dart/exercises/hello-world/test/hello_world_test.dart
trackler-2.2.1.5 tracks/dart/exercises/hello-world/test/hello_world_test.dart