I coded this to show my developer skills to an enterprise job application.
The requirements of this task were the following:
- Design and implement a Bank/account manager in C++.
- More requirement details are not provided to disallow copy.
To configure the program, the API documentation, and the Unit Tests, follow the following steps.
- CMake version 3.20.
- A C++ compiler.
- In Windows, Visual Studio 14.
- Doxygen version 1.9 or superior.
- Graphviz version 5 or superior.
Once the dependencies are solved, execute the following depending on your target OS.
git clone https://github.com/ccostagliola/small_technical_task.git
cd small_technical_task
mkdir build
cd build
cmake ..
cmake --build .Once finished, the outcome will be in the following directories:
- Program: small_technical_task/build/tech_task
- API documentation: small_technical_task/build/doc/doc_doxygen/html/index.html
For Windows you have to indicate Visual Studio target to cmake:
git clone https://github.com/ccostagliola/small_technical_task.git
cd small_technical_task
mkdir build
cd build
cmake -G "Visual Studio 14 2015" -A Win64 ..
cmake --build .To execute the program:
cd small_technical_task/build
tech_taskTo run all the Unit Tests:
cd small_technical_task/build
ctestClaudio Costagliola Fiedler ([email protected])