googletest-param-test-test.h (googletest-release-1.10.0) | : | googletest-param-test-test.h (googletest-release-1.11.0) | ||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
// | // | |||
// The Google C++ Testing and Mocking Framework (Google Test) | // The Google C++ Testing and Mocking Framework (Google Test) | |||
// | // | |||
// This header file provides classes and functions used internally | // This header file provides classes and functions used internally | |||
// for testing Google Test itself. | // for testing Google Test itself. | |||
#ifndef GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ | #ifndef GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | |||
#define GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ | #define GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | |||
#include "gtest/gtest.h" | #include "gtest/gtest.h" | |||
// Test fixture for testing definition and instantiation of a test | // Test fixture for testing definition and instantiation of a test | |||
// in separate translation units. | // in separate translation units. | |||
class ExternalInstantiationTest : public ::testing::TestWithParam<int> { | class ExternalInstantiationTest : public ::testing::TestWithParam<int> { | |||
}; | }; | |||
// Test fixture for testing instantiation of a test in multiple | // Test fixture for testing instantiation of a test in multiple | |||
// translation units. | // translation units. | |||
class InstantiationInMultipleTranslationUnitsTest | class InstantiationInMultipleTranslationUnitsTest | |||
: public ::testing::TestWithParam<int> { | : public ::testing::TestWithParam<int> { | |||
}; | }; | |||
#endif // GTEST_TEST_GTEST_PARAM_TEST_TEST_H_ | #endif // GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |