This file contains hidden or 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
public class Env { | |
public static void main(String[] args) { | |
System.getProperties().list(System.out); | |
} | |
} |
This file contains hidden or 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
Feature: Test Login | |
Scenario Outline: Login Success and Failure | |
Given I navigate to the mock application | |
When I try to login with '<type>' credentials | |
Then I should see that I logged in '<status>' | |
Examples: | |
| type | status | | |
| valid | successfully | | |
| invalid | unsuccessfully | |
NewerOlder