You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.areEqual(testAccount, result, 'The mocked account should be returned.');
@@ -3334,13 +3334,13 @@ private class SOQL_Test {
3334
3334
3335
3335
for (AccountmockedResult:result) {
3336
3336
Assert.isTrue(mockedResult.isSet(Account.Name), 'Only Account Name should be set.');
3337
-
Assert.isFalse(mockedResult.isSet(Account.Description), 'The Account Description should not be set because it was not included in the SELECT clause.');
3338
-
Assert.isFalse(mockedResult.isSet(Account.Website), 'The Account Website should not be set because it was not included in the SELECT clause.');
3337
+
Assert.isNull(mockedResult.Description, 'The Account Description should not be set because it was not included in the SELECT clause.');
3338
+
Assert.isNull(mockedResult.Website, 'The Account Website should not be set because it was not included in the SELECT clause.');
Assert.isTrue(mockedResult.isSet(Account.Industry), 'Only Account Industry should be set.');
3359
3359
Assert.isNull(mockedResult.Industry, 'The Account Industry should be null because it was not specify in mocked records.');
3360
-
Assert.isFalse(mockedResult.isSet(Account.Name), 'The Account Name should not be set because it was not included in the SELECT clause.');
3361
-
Assert.isFalse(mockedResult.isSet(Account.Description), 'The Account Description should not be set because it was not included in the SELECT clause.');
3362
-
Assert.isFalse(mockedResult.isSet(Account.Website), 'The Account Website should not be set because it was not included in the SELECT clause.');
3360
+
Assert.isNull(mockedResult.Name, 'The Account Name should not be set because it was not included in the SELECT clause.');
3361
+
Assert.isNull(mockedResult.Description, 'The Account Description should not be set because it was not included in the SELECT clause.');
3362
+
Assert.isNull(mockedResult.Website, 'The Account Website should not be set because it was not included in the SELECT clause.');
0 commit comments