CRLF
[ghsmtp.git] / Now-test.cpp
blob1a1d1c37e69942196ef0410f8ef378aadcdeb713
1 #include "Now.hpp"
3 #include <iostream>
5 int main(int argc, char* argv[])
7 Now then;
9 std::cout << "sizeof(Now) == " << sizeof(Now) << '\n';
11 std::stringstream then_str;
12 then_str << then;
14 Now then_again{then};
15 std::stringstream then_again_str;
16 then_again_str << then_again;
18 CHECK_EQ(then_str.str(), then_again_str.str());