Files
spring-shell/spring-shell-test-samples
Janne Valkealahti 7298b2ce78 Support for non-interactive shell commands
- Add support for running shell commands as a non-interactive mode.
- This works by adding new ShellApplicationRunner interface which is
  an extension to ApplicationRunner forcing to have exactly one main
  ApplicationRunner and then DefaultApplicationRunner dispatches to
  new interface ShellRunner which allows to pick between script,
  interactive and non-interactive, etc.
- It is sort of a breaking change but works much better not having
  a need to have previous hooks between application runners to disable
  things at runtime.
- All this makes it closer for a user to have a choice between
  using shell commands as is without entering interactive mode.
- Also add SpringShellProperties for better config props support
  for boot users.
- Fixes #342
2021-12-31 15:30:52 +00:00
..
2019-03-26 11:48:55 +01:00
2021-12-17 14:25:52 +00:00

Spring Shell 2 Tests

Examples of Spring Shell 2 unit, functional and integration tests.

Run

Execute the following command from the parent directory to run the tests:

mvn clean test