DRDE/ACTK1_0/common/EPPExceptionTest.cpp
Ren RenJuan 681188a22d push
2014-01-08 05:00:04 +00:00

14 lines
310 B
C++

#include "common/EPPException.hpp"
#include "common/Test.hpp"
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
EPPException a("whoops");
EPPException b("there was a problem");
a.causedBy(b);
ASSERT_EQ(a.getMessage(), "whoops\nCaused by\nthere was a problem");
}