mirror of
https://github.com/xfarrow/lasd.git
synced 2025-06-05 21:49:14 +02:00
Library 4
added template
This commit is contained in:
116
librerie/exercise4/zlasdtest/stack/stack.hpp
Normal file
116
librerie/exercise4/zlasdtest/stack/stack.hpp
Normal file
@ -0,0 +1,116 @@
|
||||
|
||||
#ifndef STACKTEST_HPP
|
||||
#define STACKTEST_HPP
|
||||
|
||||
#include "../../stack/stack.hpp"
|
||||
|
||||
/* ************************************************************************** */
|
||||
|
||||
template <typename Data>
|
||||
void PushC(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, const Data& val) {
|
||||
testnum++;
|
||||
bool tst = true;
|
||||
try {
|
||||
std::cout << " " << testnum << " (" << testerr << ") Push on the stack of the value \"" << val << "\": ";
|
||||
stk.Push(val);
|
||||
std::cout << "Correct!" << std::endl;
|
||||
} catch(std::exception exc) {
|
||||
std::cout << "\"" << exc.what() << "\": " << "Error!" << std::endl;
|
||||
tst = false;
|
||||
}
|
||||
testerr += (1 - (uint) tst);
|
||||
}
|
||||
|
||||
template <typename Data>
|
||||
void PushM(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, Data val) {
|
||||
testnum++;
|
||||
bool tst = true;
|
||||
try {
|
||||
std::cout << " " << testnum << " (" << testerr << ") Push on the stack of the value \"" << val << "\": ";
|
||||
stk.Push(std::move(val));
|
||||
std::cout << "Correct!" << std::endl;
|
||||
} catch(std::exception exc) {
|
||||
std::cout << "\"" << exc.what() << "\": " << "Error!" << std::endl;
|
||||
tst = false;
|
||||
}
|
||||
testerr += (1 - (uint) tst);
|
||||
}
|
||||
|
||||
template <typename Data>
|
||||
void Top(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, bool chk, const Data& val) {
|
||||
testnum++;
|
||||
bool tst;
|
||||
try {
|
||||
std::cout << " " << testnum << " (" << testerr << ") Top of the stack with value \"" << stk.Top() << "\": ";
|
||||
std::cout << ((tst = ((stk.Top() == val) == chk)) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::length_error exc) {
|
||||
std::cout << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::exception exc) {
|
||||
tst = false;
|
||||
std::cout << std::endl << "Wrong exception: " << exc.what() << "!" << std::endl;
|
||||
}
|
||||
testerr += (1 - (uint) tst);
|
||||
}
|
||||
|
||||
template <typename Data>
|
||||
void Pop(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, bool chk) {
|
||||
testnum++;
|
||||
bool tst = true;
|
||||
try {
|
||||
std::cout << " " << testnum << " (" << testerr << ") Pop from the stack: ";
|
||||
stk.Pop();
|
||||
std::cout << ((tst = chk) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::length_error exc) {
|
||||
std::cout << "\"" << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::exception exc) {
|
||||
tst = false;
|
||||
std::cout << std::endl << "Wrong exception: " << exc.what() << "!" << std::endl;
|
||||
}
|
||||
testerr += (1 - (uint) tst);
|
||||
}
|
||||
|
||||
template <typename Data>
|
||||
void TopNPop(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, bool chk, const Data& val) {
|
||||
testnum++;
|
||||
bool tst;
|
||||
try {
|
||||
std::cout << " " << testnum << " (" << testerr << ") TopNPop from the stack with value \"" << stk.Top() << "\": ";
|
||||
std::cout << ((tst = ((stk.TopNPop() == val) == chk)) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::length_error exc) {
|
||||
std::cout << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::exception exc) {
|
||||
tst = false;
|
||||
std::cout << std::endl << "Wrong exception: " << exc.what() << "!" << std::endl;
|
||||
}
|
||||
testerr += (1 - (uint) tst);
|
||||
}
|
||||
|
||||
template <typename Stk>
|
||||
void EqualStack(uint& testnum, uint& testerr, const Stk& stk1, const Stk& stk2, bool chk) {
|
||||
testnum++;
|
||||
bool tst;
|
||||
try {
|
||||
std::cout << " " << testnum << " (" << testerr << ") The two stacks are " << ((tst = (stk1 == stk2)) ? "" : "not ") << "equal: ";
|
||||
std::cout << ((tst = (tst == chk)) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::exception exc) {
|
||||
std::cout << "\"" << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
|
||||
}
|
||||
testerr += (1 - (uint) tst);
|
||||
}
|
||||
|
||||
template <typename Stk>
|
||||
void NonEqualStack(uint& testnum, uint& testerr, const Stk& stk1, const Stk& stk2, bool chk) {
|
||||
testnum++;
|
||||
bool tst;
|
||||
try {
|
||||
std::cout << " " << testnum << " (" << testerr << ") The two stacks are " << ((tst = (stk1 != stk2)) ? "not " : "") << "equal: ";
|
||||
std::cout << ((tst = (tst == chk)) ? "Correct" : "Error") << "!" << std::endl;
|
||||
} catch(std::exception exc) {
|
||||
std::cout << "\"" << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
|
||||
}
|
||||
testerr += (1 - (uint) tst);
|
||||
}
|
||||
|
||||
/* ************************************************************************** */
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user