mirror of
https://github.com/foss42/apidash.git
synced 2025-08-06 13:51:20 +08:00
17 lines
298 B
Dart
17 lines
298 B
Dart
import 'package:postman/postman.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
group('A group of tests', () {
|
|
final awesome = Awesome();
|
|
|
|
setUp(() {
|
|
// Additional setup goes here.
|
|
});
|
|
|
|
test('First Test', () {
|
|
expect(awesome.isAwesome, isTrue);
|
|
});
|
|
});
|
|
}
|