Lines Matching refs:Field
72 using ::testing::Field;
76 Field("sessionId", &ApexSessionInfo::sessionId, Eq(other.sessionId)),
77 Field("isUnknown", &ApexSessionInfo::isUnknown, Eq(other.isUnknown)),
78 Field("isVerified", &ApexSessionInfo::isVerified,
80 Field("isStaged", &ApexSessionInfo::isStaged, Eq(other.isStaged)),
81 Field("isActivated", &ApexSessionInfo::isActivated,
83 Field("isRevertInProgress", &ApexSessionInfo::isRevertInProgress,
85 Field("isActivationFailed", &ApexSessionInfo::isActivationFailed,
87 Field("isSuccess", &ApexSessionInfo::isSuccess, Eq(other.isSuccess)),
88 Field("isReverted", &ApexSessionInfo::isReverted,
90 Field("isRevertFailed", &ApexSessionInfo::isRevertFailed,
98 using ::testing::Field;
101 AllOf(Field("moduleName", &ApexInfo::moduleName, Eq(other.moduleName)),
102 Field("modulePath", &ApexInfo::modulePath, Eq(other.modulePath)),
103 Field("preinstalledModulePath", &ApexInfo::preinstalledModulePath,
105 Field("versionCode", &ApexInfo::versionCode, Eq(other.versionCode)),
106 Field("isFactory", &ApexInfo::isFactory, Eq(other.isFactory)),
107 Field("isActive", &ApexInfo::isActive, Eq(other.isActive))),
463 using ::testing::Field;