Skip to content

ccostagliola/small_technical_task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Small technical task

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.

Building

To configure the program, the API documentation, and the Unit Tests, follow the following steps.

Dependencies

  • 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.

Linux

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

Windows

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 .

Usage

To execute the program:

cd small_technical_task/build
tech_task

Testing

To run all the Unit Tests:

cd small_technical_task/build
ctest

Author

Claudio Costagliola Fiedler ([email protected])

About

Small technical task showcasing C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published