.NET Core 3.1 SDK - https://dotnet.microsoft.com/download/dotnet-core/3.1
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!
-
Create a feature branch
-
Create all challenge 1 unit tests (and write additional unit tests if needed) in
AppTest.ProgramTests.ConvertToTitleCase_*
. -
Write corresponding method in
App.Program
for challenge 1. -
Create all challenge 2 unit tests (and write additional unit tests if needed) in
AppTest.ProgramTests.ConvertUnixToDateString_*
. -
Write corresponding method in
App.Program
for challenge 2. -
Ensure all unit tests run successfully with:
dotnet test
. -
Push your feature branch and submit a pull request.