Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1.13 KB

README.md

File metadata and controls

33 lines (20 loc) · 1.13 KB

Archarithm's Coding Challenge - Overview

Software Requirements

.NET Core 3.1 SDK - https://dotnet.microsoft.com/download/dotnet-core/3.1

Getting started

Clone the project.

Go into {ProjectRoot}/AppTest and run dotnet build to download nuget dependencies and build project.

Run unit tests from {ProjectRoot}/AppTest with: dotnet test.

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 AppTest.ProgramTests.ConvertToTitleCase_*.

  3. Write corresponding method in App.Program for challenge 1.

  4. Create all challenge 2 unit tests (and write additional unit tests if needed) in AppTest.ProgramTests.ConvertUnixToDateString_*.

  5. Write corresponding method in App.Program for challenge 2.

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

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