-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from olexale/bugfix/combine-params-and-datatable
Refactor generic step generator
- Loading branch information
Showing
5 changed files
with
62 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Feature: Songs | ||
|
||
Scenario: Available songs | ||
Given the following songs | ||
Given the following {'Good'} songs | ||
| 'artist' | 'title' | | ||
| 'The Beatles' | 'Let It Be' | | ||
| 'Camel' | 'Slow yourself down' | |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import 'package:bdd_widget_test/data_table.dart' as bdd; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
/// Usage: the following songs | ||
Future<void> theFollowingSongs(WidgetTester tester, bdd.DataTable dataTable) async { | ||
/// Usage: the following {'Good'} songs | ||
Future<void> theFollowingSongs( | ||
WidgetTester tester, String param1, bdd.DataTable dataTable) async { | ||
throw UnimplementedError(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters