Authors (team):
- Sahaidak Yurii
- Pavlyk Bohdan
- Samoilenko Marta
Using CMakeLists.txt
mkdir -p build
cd build
cmake ..
cmake --build .
To using GTests run
./build/test_my_vector
./build/test_my_array
- created Google tests for the
MyVector
andMyArray
- created classes that conform to the tests
- added git-hub pipeline to run tests, but it waits infinitely =(
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./build/test_my_vector
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./build/test_my_array