Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 527 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 527 Bytes

coding-problems

Using Behavior Driven Development in Java to solve/save coding problems from various sources

Instructions

Standard maven setup

  • Run 'mvn clean install' for initial setup
  • 'mvn test' to run all tests including BDD

Project Structure

For each coding problem, create

  • Gherkin feature file in \src\test\resources\com\github\thedeepman\problems
  • Step definitions in \src\test\java\com\github\thedeepman\problems\StepDefinitions
  • Actual production code in \src\main\java\com\github\thedeepman\problems