lambda-behave
lambda-behave copied to clipboard
A modern testing and behavioural specification framework for Java 8
Bumps logback-classic from 1.1.2 to 1.2.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
The current implementation of `ArrayExpectation.never` does nothing, creating a new `BoundExpectation` object that is immediately discarded and returning `this` unchanged. Because of this, the expectation conditions are not reversed. The...
Looks like you're not using any error-checking in your Java build. This pull requests adds a static analysis tool, [Error Prone](http://errorprone.info), created by Google to find common errors in Java...
Let's say I have the following test class: ```java @RunWith(JunitSuiteRunner.class) public class StackSpec {{ Stack stack = new Stack(); List list = new ArrayList(); describe("a stack", it -> { it.isSetupWith(stack::clear);...
Currently when we expect some exception we can just check class of expected Exception. It would be useful if some matcher could match on exception's message (maybe event fields of...
Enhacement: I'd like to contribute and add ,as soon as I have time, a spring integration. For example a LambdaBehaveSpringRunner that starts a spring context that provides to inject spring...
Right now, to write an `it.uses` declaration iterating over a range of ints, I have to write: ```java it.uses(IntStream.rangeClosed(low, high).mapToObj(x -> x)).toShow((expect, number) -> ...); ``` It would be nice...
Currently can only run a whole class at a time in IDEs, due to the way the junit runner interacts. This probably needs plugins. In priority order: intellij maven eclipse
Previously it was thought this wasn't sensible given Junit runners, but discussion with potential users at the hackday suggested that they would be happy with nesting even if all it...