dartz_test 0.1.1 copy "dartz_test: ^0.1.1" to clipboard
dartz_test: ^0.1.1 copied to clipboard

Provides matchers to help unit-testing your apps when using functional programming types defined in the dartz package.

Provides matchers to help unit-testing your apps when using functional programming types defined in the dartz package.


codecov License Pub badge

Getting started #

Installation : #

dart pub add --dev dartz_test

Usage #

Eithers #

test('either is right', () {
    Either either = Right('foo');

    expect(either, isRight);
    expect(either, isRightOf('foo'));
    expect(either, isRightThat(equals('foo')));

    var value = either.getRightOrFailTest();
    expect(value, equals('foo'));
  });

The same matchers exist for Left

Options #

  test('option is none', () {
    Option option = None();
    expect(option, isNone);
  });

  test('option is Some', () {
    Option option = Some('foo');

    expect(option, isSome);
    expect(option, isSomeOf('foo'));
    expect(option, isSomeThat(equals('foo')));

    var value = option.getOrFailTest();
    expect(value, equals('foo'));
  });
2
likes
140
pub points
80%
popularity

Publisher

verified publishersupermuel.fr

Provides matchers to help unit-testing your apps when using functional programming types defined in the dartz package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

dartz, test

More

Packages that depend on dartz_test