JGiven icon indicating copy to clipboard operation
JGiven copied to clipboard

Behavior-Driven Development in plain Java

Results 88 JGiven issues
Sort by recently updated
recently updated
newest added

Annotate the methods intended for users with `@PublicApi` and ideally reduce the visibility of all other methods

Currently the only way to bring spring together with JGiven is by inheriting from `SpringScenarioTest` (JUnit 5). This method goes against the very principle of spring and allows for heinous...

enhancement
Spring

== Context == Stages added as per documented here http://jgiven.org/userguide/#_stage_injection As described in http://jgiven.org/userguide/#_dynamic_adding_of_stages Before/AfterScenario methods are supposedly invoked for these stages. == The issue == I have no time...

bug
TestNG

When I use testng dataprovider and the value of a variable is the same in all tests the report put this value on BDD text and not on Cases list...

enhancement
core
accepted

- [x] User Guide documentation - [ ] More tests - [x] How to support languages others than English? - Can be implemented by generating corresponding classes for other languages....

JUnit5

When I use org.junit.Assume and mark scenario as skipped there is no information in the report about skipped scenarios. It would be nice to have them displayed the same way...

enhancement
JUnit
under discussion

Hi, We are using dynamic tagging for multiple tests. For e.g. @Feature("TestType1") @Category("Integration") Void test1() {} @Feature("TestType1") @Category("Integration") Void test 2() {} In AngularJS when we access items in rootTags...

enhancement
core

Having a reporter that generates AsciiDoc would have several benefits: - The result can be transformed into many other formats like HTML or PDF - The resulting files could be...

enhancement
help wanted

When using kotlin, all stage classes and functions have to declared `open` to get JGiven working. The kotlin compiler plugin "all-open" can do this for you, which is very convenient....

enhancement
Kotlin