diff --git a/sst/test/include/framework/runner.hh b/sst/test/include/framework/runner.hh index 3eabffb88b..75ef7dee4b 100644 --- a/sst/test/include/framework/runner.hh +++ b/sst/test/include/framework/runner.hh @@ -21,16 +21,6 @@ class Runner { Runner() {} /** Method used to run the test(s) inside a runner. */ virtual void run(){}; - /** - * Returns the current executing TestContext. - * The TestContext for a Group changes everytime a new test is run - */ - // TODO commented out as seemingly unused and causing warnings due to return - // of a stack variable. This needs to be rewritten - // virtual std::unique_ptr& getCurrContext() { - // std::unique_ptr ptr = std::make_unique(); - // return ptr; - // }; }; /** GroupConfig used to provide configuration options to a Group. */ @@ -180,10 +170,6 @@ class Group : public Runner { return true; }; - // TODO remove this as implements broken function - /** Returns the TestContext of the current executing test case. */ - std::unique_ptr& getCurrContext() { return ctx_; }; - /** * This method returns a reference of GroupConfig. This method gets overriden * by TEST_GROUP Macro with the config defined in the source code.