// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include #include #include class BaseTest : public FastOS_Application { private: BaseTest(const BaseTest&); BaseTest &operator=(const BaseTest&); int totallen; public: const char *okString; const char *failString; BaseTest () : totallen(70), okString("SUCCESS"), failString("FAILURE") { } virtual ~BaseTest() {}; void PrintSeparator () { for(int i=0; i