An example of unit testing in C language using CuTest framework for Operating Systems Assignment at ITBA.
- C Compiler: Clang
- Testing Framework: CuTest: C Unit Testing Framework
- Static Code Analysis Tools: Cppcheck and PVS-Studio
- Formatter: Clang-format
To compile MemoryManagerTest
run:
$> make all
$> ./MemoryManagerTest.out
To execute the static code analysis tools Cppcheck
and PVS-Studio
run:
$> make check
To execute the code formatter Clang-format
run:
$> make format