Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jieyouxu/dart-bdd
- Owner: jieyouxu
- License: bsd-3-clause
- Created: 2018-12-25T00:40:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-25T00:50:48.000Z (almost 6 years ago)
- Last Synced: 2023-08-20T21:28:15.344Z (about 1 year ago)
- Topics: bdd, bdd-style, dart, dart-library
- Language: Dart
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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]));
});
});
}
```