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
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: postgresql | |
stringData: | |
db-user: postgres | |
db-password: postgres | |
--- | |
apiVersion: v1 | |
kind: ConfigMap |
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
[ | |
{ | |
"id": "xxx", | |
"subject": "Title of the issue", | |
"recommendedAction": "Long text that might span over multiple sections", | |
"priority": 1, | |
"severity": 2, | |
"work": { // is this what we call currently "holder"? yes | |
"id": "xxx", | |
"name": "xxx" |
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
//--------------- | |
// The @RunWith(PowerMockRunner.class) annotation tells jUnit | |
// that we are using an extension to handle testing of this class. | |
// This tells jUnit to use this test runner instead of its own test runner. | |
@RunWith(PowerMockRunner.class) | |
// The @PrepareForTest({IdentityUtilities.class, Person.class}) serves multiple purposes here. | |
// The first is to tell PowerMock that we need to do some preparation | |
// of the classes to instrument them for our testing. Classes defined using this annotation | |
// are typically those that needs to be byte-code manipulated. This includes final classes, |
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 FormTest { | |
@Steps | |
FormSteps endUser; | |
@Given("the user is on the form page") | |
public void givenTheUserIsOnTheFormPage() { | |
endUser.on_the_form_page(); | |
} |
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
Title (one line describing the story) | |
Narrative: | |
As a [role] | |
I want [feature] | |
So that [benefit] | |
Acceptance Criteria: (presented as Scenarios) | |
Scenario: Title |