Skip to content

Commit

Permalink
Simplify data table model and bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
bjuric committed Oct 26, 2024
1 parent cd30ca1 commit cf77186
Show file tree
Hide file tree
Showing 11 changed files with 124 additions and 239 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Replace internal stack of data caches with a single data cache
- Manage settings internally without exposing them as system properties
- Implicits managed at lifecycle level
- Simplify data table model and bindings
- Add implicit variable(s):
- `gwen.process.name`
- Add environment variable(s)
Expand All @@ -20,7 +21,7 @@
- Gwen Workspaces warning
- `-p|--properties` option
- Report portal integration
- Matrix tables
- Matrix data tables
- IE browser integration
- `gwen-web-accept-untrusted-certs` setting (use `acceptInsecureCerts` capability instead)
- DSL steps
Expand Down
48 changes: 0 additions & 48 deletions src/test/features/core/tables-foreach/NumberTablesForEach.feature

This file was deleted.

104 changes: 0 additions & 104 deletions src/test/features/core/tables-foreach/NumberTablesForEach.meta

This file was deleted.

18 changes: 18 additions & 0 deletions src/test/features/core/tables/NumberTables.feature
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,37 @@ Feature: Number tables
| 1 | 1 |
| 2 | 10 |
| 3 | 11 |
And each row contains a number in decimal and binary form using ForEach annotation
| decimal | binary |
| 1 | 1 |
| 2 | 10 |
| 3 | 11 |
And each column contains a number and its square and cube
| number | 1 | 2 | 3 |
| square | 1 | 4 | 9 |
| cube | 1 | 8 | 27 |
And each column contains a number and its square and cube using ForEach annotation
| number | 1 | 2 | 3 |
| square | 1 | 4 | 9 |
| cube | 1 | 8 | 27 |
And each column contains a number in decimal and binary form
| 4 | 5 | 6 |
| 100 | 101 | 110 |
And each column contains a number in decimal and binary form using ForEach annotation
| 4 | 5 | 6 |
| 100 | 101 | 110 |
And each row contains two numbers that sum to a Fibonacci number in the third
| 0 | 1 | 1 |
| 1 | 1 | 2 |
| 1 | 2 | 3 |
| 2 | 3 | 5 |
| 3 | 5 | 8 |
And each row contains two numbers that sum to a Fibonacci number in the third using ForEach annotation
| 0 | 1 | 1 |
| 1 | 1 | 2 |
| 1 | 2 | 3 |
| 2 | 3 | 5 |
| 3 | 5 | 8 |
And four in decimal is "4"
And five in decimal is "5"
And six in decimal is "6"
Expand Down
Loading

0 comments on commit cf77186

Please sign in to comment.