/codetest-1

At-Home code test for Athlinks Engineering candidates.

Primary LanguageC#

Code Test

Running the test

  • Fork this repository
  • Clone your fork: git clone https://github.com/<your github username>/codetest-1.git

Windows

  • Using Windows Explorer, browse to codetest-1\test, and double click on test.cmd

  • Open and edit the code.* files in the main directory. Use any code editor you are comfortable with.

  • Test will re-execute on any code change.

  • Press Ctrl-C to exit test monitor.
  • Push to your fork
    git checkout -b "<your-name-with-dashes>"
    git commit -am"my test answers"
    git push --set-upstream origin <your-name-with-dashes>
    
  • Submit a pull request

Mac/Linux

  • Run Terminal

  • Install dependencies

  • Fork this repository

  • Clone your fork: git clone https://github.com/<your github username>/codetest-1.git

  • Run the test script

    • cd codetest-1/test
    • sh test.sh
  • Open and edit the [Cc]ode.* files in the main directory. Use any code editor you are comfortable with.

  • Test will re-execute on any code change.

  • Press Ctrl-C to exit test monitor.

  • Push to your fork

    git checkout -b "<your-name-with-dashes>"
    git commit -am"my test answers"
    git push --set-upstream origin <your-name-with-dashes>
    
  • Submit a pull request