Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 1.1 KB

README.md

File metadata and controls

33 lines (19 loc) · 1.1 KB

Archarithm's Coding Challenge - Overview

Software Requirements

Java - https://www.java.com/en/

Maven - http://maven.apache.org

Junit 5 - https://junit.org/junit5/

Getting started

Clone the project, clean, and compile (no unit tests) with: mvn clean install -DskipTests.

Run unit tests with: mvn test or mvn install.

Refer to the coding challenge instructions found in codingChallenge.md

Complete both of the challenges listed in codingChallenge.md and follow the instructions below to submit your solution. Good luck!

Instructions

  1. Create a feature branch

  2. Create all challenge 1 unit tests (and write additional unit tests if needed) in com.github.archarithms.test.TitleCaseTests.

  3. Write corresponding method in com.github.archarithms.App for challenge 1.

  4. Create all challenge 2 unit tests (and write additional unit tests if needed) in com.github.archarithms.test.DateStringTests.

  5. Write corresponding method in com.github.archarithms.App for challenge 2.

  6. Ensure all unit tests run successfully with: mvn test.

  7. Push your feature branch and submit a pull request.