#include #include #include #include int main(int, char *[], char * argenv[]) { nntpchan::Frontend_ptr f(new nntpchan::ExecFrontend("./contrib/nntpchan.sh", argenv)); assert(f->AcceptsMessage("")); assert(f->AcceptsNewsgroup("overchan.test")); assert(nntpchan::IsValidMessageID("")); assert(!nntpchan::IsValidMessageID("asd")); std::cout << "all good" << std::endl; }