source: liblaziness/test/test_base.cc

Last change on this file was 4, checked in by artyom, 13 years ago

liblaziness

File size: 366 bytes
Line 
1#include "test_base.h"
2#include <iostream>
3
4TestFailed::TestFailed(const std::string& message) throw() : std::exception(), message(message) { }
5
6TestFailed::~TestFailed() throw() { }
7
8const char* TestFailed::what() const throw()
9{
10        return message.c_str();
11}
12
13StringStream& StringStream::empty()
14{
15        str("");
16        return *this;
17}
18
19void assertTick()
20{
21        std::cout << '.';
22}
Note: See TracBrowser for help on using the repository browser.