42_Ft_containers-Crash-test is a complete tester for Ft_containers project of 42 school.
Crash test is allowing you test your containers: vector, stack, map in ft namespace.
This test checks the majority of subject and checklist requires.
Test doesn't check something you don't need to implement and was written by students.
First of all you need to configure file config.sh
and write correct paths of your classes.
If you haven't some class implementation yet, for example map, you need to comment appropriate line in config.sh
:
# map='../map.hpp'
./start.sh # for all
./start.sh -v # for vector
./start.sh -s # for stack
./start.sh -m # for map
./start.sh -s -m # for stack and map, etc
I'm waiting for your bugs or suggestions for improving.