Skip to content

Latest commit

 

History

History
54 lines (31 loc) · 1.22 KB

README.md

File metadata and controls

54 lines (31 loc) · 1.22 KB

Bug World

Software Engineering

Jacobs University, Spring Semester 2018

Prof. Dr. Peter Baumann

Contributors

Phase 1

Empty repository

Phase 2

Leul Shiferaw [email protected]

Matius Chairani [email protected]

Prerequisites

Compilation

CMake

A CMakeLists.txt is available in the root folder, and compilation is done with CMake. CMake also needs to be installed in the system. Refer to stackexchange.com or google.com for instructions on how to install the framework.

Framework Testing

Google Test

For unit testing, Google Test is the framework of choice. Google Test needs to be installed in the system. Refer to stackexchange.com or google.com for instructions on how to install the framework.

Installation on a Mac: http://hack.limbicmedia.ca/installing-google-test/

Running the Google Test

From the project root directory

$ mkdir build
$ cd build
$ cmake CMakeLists.txt ..
$ make
$ cd test
$ ./gtest-bug

Documentation

Comment style

The commenting style adopts the Doxygen style comment blocks, which will allow an easier generation of the documentation file with Doxygen. More on Doxygen http://www.stack.nl/~dimitri/doxygen/index.html.