Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jieyouxu/dart-bdd

BDD name aliases for Dart test.
https://github.com/jieyouxu/dart-bdd

bdd bdd-style dart dart-library

Last synced: about 4 hours ago
JSON representation

BDD name aliases for Dart test.

Awesome Lists containing this project

README

        

# BDD Test Style

Simple name aliases for Dart test.

## Usage

A simple usage example:

```dart
import 'package:bdd_test_style/bdd_test_style.dart';
import 'package:test/test.dart';

void main() {
describe('String#operator[]', () {
it('should give character at supplied index', () {
expect('S', equals('String'[0]));
});
});
}
```