This source file includes following definitions.
- TEST
#include "chrome/installer/util/compat_checks.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(CompatTests, SymantecSEPVersion) {
EXPECT_FALSE(HasIncompatibleSymantecEndpointVersion(L"11.0.3001.0"));
EXPECT_TRUE(HasIncompatibleSymantecEndpointVersion(L"11.0.3000.1"));
EXPECT_TRUE(HasIncompatibleSymantecEndpointVersion(L"11.0.2999.1"));
EXPECT_TRUE(HasIncompatibleSymantecEndpointVersion(L"10.1.5000.1"));
EXPECT_TRUE(HasIncompatibleSymantecEndpointVersion(L"9.5.1000.0"));
EXPECT_FALSE(HasIncompatibleSymantecEndpointVersion(L""));
EXPECT_FALSE(HasIncompatibleSymantecEndpointVersion(L"11.0.3000"));
EXPECT_FALSE(HasIncompatibleSymantecEndpointVersion(L"11.0.3000.1.2"));
EXPECT_FALSE(HasIncompatibleSymantecEndpointVersion(L"11.b.3000.1"));
EXPECT_FALSE(HasIncompatibleSymantecEndpointVersion(NULL));
}