Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1 KB

README.md

File metadata and controls

31 lines (24 loc) · 1 KB

42_Ft_containers_Crash_test

42_Ft_containers-Crash-test is a complete tester for Ft_containers project of 42 school.

Description

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.

Usage

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'

Run

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

Additional information

I'm waiting for your bugs or suggestions for improving.

Ft_containers tester