d08 ex00 ajout tests cha

This commit is contained in:
Hugo LAMY
2022-03-19 17:41:35 +01:00
parent 0e4538b5c9
commit 0c5877056e
2 changed files with 13 additions and 9 deletions

BIN
d08/ex00/easyfind Executable file

Binary file not shown.

View File

@@ -10,22 +10,20 @@
#define N_TEST "3"
template < typename T >
void standardTest(T container) {
void standardTest(T container, int test) {
typename T::const_iterator it;
int test;
for (int i = -9 ; i < 10 ; i++)
for (int i = 65 ; i < 91 ; i++)
container.push_back(i);
for (it = container.begin(); it != container.end(); it++)
std::cout << *it << ": " << &*it << "\n";
std::cout << "\n";
test = -3;
try {
it = easyfind(container, test);
std::cout << *it << ": " << &*it << "\n";
std::cout << *it << ": " << &*it << "\n\n";
}
catch (std::exception const & e) {
std::cout << test << ": " << e.what() << "\n";
std::cout << test << ": " << e.what() << "\n\n";
}
}
@@ -36,21 +34,27 @@ int main() {
<< "tests list :" RESET "\n";
{
std::list<int> container;
standardTest(container);
standardTest(container, 70);
std::list<char> container2;
standardTest(container2, 'T');
}
std::cout << B_YELLOW "\n[" << ++i << "/" N_TEST "] "
<< "tests vector :" RESET "\n";
{
std::vector<int> container;
standardTest(container);
standardTest(container, 70);
std::vector<char> container2;
standardTest(container2, 'T');
}
std::cout << B_YELLOW "\n[" << ++i << "/" N_TEST "] "
<< "tests deque :" RESET "\n";
{
std::deque<int> container;
standardTest(container);
standardTest(container, 70);
std::deque<char> container2;
standardTest(container2, 'T');
}
return 0;