#ifndef IG_TEST_HELPERS_HPP #define IG_TEST_HELPERS_HPP #include // std::unique_ptr namespace test { // Implementation of the c++14 function `std::make_unique` template std::unique_ptr make_unique( Args&&... args ) { return std::unique_ptr{ new T{std::forward(args)... } }; } } // namespace test #endif // IG_TEST_HELPERS_HPP