diff --git a/README.md b/README.md
index daffb3a..8b0426f 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,7 @@ This [Github Action](https://github.com/features/actions) displays test results
- Java / [JUnit](https://junit.org/)
- JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/)
- Swift / xUnit
+- Apex / [JSON](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_testing.htm)
For more information see [Supported formats](#supported-formats) section.
@@ -341,6 +342,16 @@ Please update Mocha to version [v9.1.0](https://github.com/mochajs/mocha/release
Support for Swift test results in xUnit format is experimental - should work but it was not extensively tested.
+
+ apex-json (Experimental)
+
+Support for [Salesforce Apex](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_testing.htm)
+
+```bash
+sf apex test run --result-format json --wait 30 > test-results.json
+```
+
+
## GitHub limitations
Unfortunately, there are some known issues and limitations caused by GitHub API:
diff --git a/__tests__/apex-json.test.ts b/__tests__/apex-json.test.ts
new file mode 100644
index 0000000..12e06ec
--- /dev/null
+++ b/__tests__/apex-json.test.ts
@@ -0,0 +1,45 @@
+import path from 'node:path';
+import fs from 'node:fs';
+
+import { ParseOptions } from '../src/test-parser';
+import { normalizeFilePath } from '../src/utils/path-utils';
+import { ApexJsonParser } from '../src/parsers/apex-json/apex-json-parsers';
+import { getReport } from '../src/report/get-report';
+
+describe('apex-json tests', () => {
+ it('produces empty test run result when there are no test cases', async () => {
+ const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'apex-json.json')
+ const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
+ const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
+
+ const opts: ParseOptions = {
+ parseErrors: true,
+ trackedFiles: []
+ }
+
+ const parser = new ApexJsonParser(opts)
+ const result = await parser.parse(filePath, fileContent)
+ expect(result.tests).toBe(0)
+ expect(result.result).toBe('success')
+ });
+
+ it('matches report snapshot', async () => {
+ const opts: ParseOptions = {
+ parseErrors: true,
+ trackedFiles: []
+ }
+
+ const fixturePath = path.join(__dirname, 'fixtures', 'apex-json.json')
+ const outputPath = path.join(__dirname, '__outputs__', 'apex-json.md')
+ const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
+ const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
+
+ const parser = new ApexJsonParser(opts)
+ const result = await parser.parse(filePath, fileContent)
+ expect(result).toMatchSnapshot()
+
+ const report = getReport([result])
+ fs.mkdirSync(path.dirname(outputPath), {recursive: true})
+ fs.writeFileSync(outputPath, report)
+ })
+});
diff --git a/__tests__/fixtures/apex-json.json b/__tests__/fixtures/apex-json.json
new file mode 100644
index 0000000..adca581
--- /dev/null
+++ b/__tests__/fixtures/apex-json.json
@@ -0,0 +1,11800 @@
+{
+ "result": {
+ "summary": {
+ "failRate": "0%",
+ "failing": 0,
+ "hostname": "https://scratch.my.salesforce.com",
+ "orgId": "00DOy000005q2CXMAY",
+ "outcome": "Passed",
+ "passRate": "100%",
+ "passing": 736,
+ "skipped": 0,
+ "testRunId": "707Oy00000Tp86T",
+ "testStartTime": "2024-07-11T16:27:20.000Z",
+ "testsRan": 736,
+ "userId": "005Oy0000097Of3IAE",
+ "username": "test@example.com",
+ "commandTime": "474 ms",
+ "testExecutionTime": "26480 ms",
+ "testTotalTime": "26480 ms"
+ },
+ "tests": [
+ {
+ "Id": "07MOy000007kEKWMA2",
+ "QueueItemId": "709Oy000006AA2fIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testSetup",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfKIAU",
+ "Name": "fflib_SecurityUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4368,
+ "FullName": "fflib_SecurityUtilsTest.testSetup"
+ },
+ {
+ "Id": "07MOy000007kEKXMA2",
+ "QueueItemId": "709Oy000006AA2fIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "readonly_field_access",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfKIAU",
+ "Name": "fflib_SecurityUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 880,
+ "FullName": "fflib_SecurityUtilsTest.readonly_field_access"
+ },
+ {
+ "Id": "07MOy000007kEKYMA2",
+ "QueueItemId": "709Oy000006AA2fIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "readonly_objectAndField_access",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfKIAU",
+ "Name": "fflib_SecurityUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 628,
+ "FullName": "fflib_SecurityUtilsTest.readonly_objectAndField_access"
+ },
+ {
+ "Id": "07MOy000007kEKZMA2",
+ "QueueItemId": "709Oy000006AA2fIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "readonly_object_access",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfKIAU",
+ "Name": "fflib_SecurityUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 581,
+ "FullName": "fflib_SecurityUtilsTest.readonly_object_access"
+ },
+ {
+ "Id": "07MOy000007kEKaMAM",
+ "QueueItemId": "709Oy000006AA2fIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "sysadmin_objectAndField_access",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfKIAU",
+ "Name": "fflib_SecurityUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 237,
+ "FullName": "fflib_SecurityUtilsTest.sysadmin_objectAndField_access"
+ },
+ {
+ "Id": "07MOy000007kN2wMAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testCommaDelimitedBuilder1",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 18,
+ "FullName": "fflib_StringBuilderTest.testCommaDelimitedBuilder1"
+ },
+ {
+ "Id": "07MOy000007kN2xMAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testCommaDelimitedBuilder2",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_StringBuilderTest.testCommaDelimitedBuilder2"
+ },
+ {
+ "Id": "07MOy000007kN2yMAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testCommanDelimitedBuilderWithAlternativeDelimiter",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_StringBuilderTest.testCommanDelimitedBuilderWithAlternativeDelimiter"
+ },
+ {
+ "Id": "07MOy000007kN2zMAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testCommanDelimitedBuilderWithAlternativeDelimiterAndPrefix",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_StringBuilderTest.testCommanDelimitedBuilderWithAlternativeDelimiterAndPrefix"
+ },
+ {
+ "Id": "07MOy000007kN30MAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testCommanDelimitedBuilderWithItemPrefix",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_StringBuilderTest.testCommanDelimitedBuilderWithItemPrefix"
+ },
+ {
+ "Id": "07MOy000007kN31MAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testFieldListBuilder",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_StringBuilderTest.testFieldListBuilder"
+ },
+ {
+ "Id": "07MOy000007kN32MAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testMultiCurrencyFieldListBuilder",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_StringBuilderTest.testMultiCurrencyFieldListBuilder"
+ },
+ {
+ "Id": "07MOy000007kN33MAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testfflib_StringBuilder1",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_StringBuilderTest.testfflib_StringBuilder1"
+ },
+ {
+ "Id": "07MOy000007kN34MAE",
+ "QueueItemId": "709Oy000006AA2gIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testfflib_StringBuilder2",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfMIAU",
+ "Name": "fflib_StringBuilderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_StringBuilderTest.testfflib_StringBuilder2"
+ },
+ {
+ "Id": "07MOy000007kY5tMAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingDomainFactoryShouldGiveRegisteredImplsAndMocks",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 190,
+ "FullName": "fflib_ApplicationTest.callingDomainFactoryShouldGiveRegisteredImplsAndMocks"
+ },
+ {
+ "Id": "07MOy000007kY5uMAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingDomainFactoryWithContructorClassThatDoesNotSupportIConstructableShouldGiveException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_ApplicationTest.callingDomainFactoryWithContructorClassThatDoesNotSupportIConstructableShouldGiveException"
+ },
+ {
+ "Id": "07MOy000007kY5vMAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingDomainFactoryWithGenericListShouldGiveException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApplicationTest.callingDomainFactoryWithGenericListShouldGiveException"
+ },
+ {
+ "Id": "07MOy000007kY5wMAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingDomainFactoryWithIdsShouldGiveRegisteredImpls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_ApplicationTest.callingDomainFactoryWithIdsShouldGiveRegisteredImpls"
+ },
+ {
+ "Id": "07MOy000007kY5xMAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingDomainFactoryWithInAccessableConstructorShouldGiveException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApplicationTest.callingDomainFactoryWithInAccessableConstructorShouldGiveException"
+ },
+ {
+ "Id": "07MOy000007kY5yMAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingDomainFactoryWithNoSObjectTypeShouldGiveException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ApplicationTest.callingDomainFactoryWithNoSObjectTypeShouldGiveException"
+ },
+ {
+ "Id": "07MOy000007kY5zMAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingMockedUnitOfWorkWithCustomDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApplicationTest.callingMockedUnitOfWorkWithCustomDML"
+ },
+ {
+ "Id": "07MOy000007kY60MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingMockedUnitOfWorkWithCustomObjectTypesAndDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApplicationTest.callingMockedUnitOfWorkWithCustomObjectTypesAndDML"
+ },
+ {
+ "Id": "07MOy000007kY61MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingSelectorFactorySelectByIdWithEmptyListShouldGiveException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ApplicationTest.callingSelectorFactorySelectByIdWithEmptyListShouldGiveException"
+ },
+ {
+ "Id": "07MOy000007kY62MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingSelectorFactorySelectByIdWithMixedIdTypeListShouldGiveException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApplicationTest.callingSelectorFactorySelectByIdWithMixedIdTypeListShouldGiveException"
+ },
+ {
+ "Id": "07MOy000007kY63MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingSelectorFactoryShouldGiveRegisteredImpls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_ApplicationTest.callingSelectorFactoryShouldGiveRegisteredImpls"
+ },
+ {
+ "Id": "07MOy000007kY64MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingSelectoryFactorySelectByIdShouldReturnResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApplicationTest.callingSelectoryFactorySelectByIdShouldReturnResults"
+ },
+ {
+ "Id": "07MOy000007kY65MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingSelectoryFactorySselectByRelationshipPassRelatedIds",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApplicationTest.callingSelectoryFactorySselectByRelationshipPassRelatedIds"
+ },
+ {
+ "Id": "07MOy000007kY66MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingServiceFactoryShouldGiveRegisteredImplsAndMockImpls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ApplicationTest.callingServiceFactoryShouldGiveRegisteredImplsAndMockImpls"
+ },
+ {
+ "Id": "07MOy000007kY67MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingUnitOfWorkFactoryShouldGivenStandardImplsAndMockImpls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApplicationTest.callingUnitOfWorkFactoryShouldGivenStandardImplsAndMockImpls"
+ },
+ {
+ "Id": "07MOy000007kY68MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingUnitOfWorkFactoryWithCustomTypesShouldGivenStandardImplsAndMockImpls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApplicationTest.callingUnitOfWorkFactoryWithCustomTypesShouldGivenStandardImplsAndMockImpls"
+ },
+ {
+ "Id": "07MOy000007kY69MAE",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingUnitOfWorkWithCustomDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApplicationTest.callingUnitOfWorkWithCustomDML"
+ },
+ {
+ "Id": "07MOy000007kY6AMAU",
+ "QueueItemId": "709Oy000006AA2hIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "callingUnitOfWorkWithCustomObjectTypesAndDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAesIAE",
+ "Name": "fflib_ApplicationTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApplicationTest.callingUnitOfWorkWithCustomObjectTypesAndDML"
+ },
+ {
+ "Id": "07MOy000007kYU5MAM",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnTheChangedRecordsBySObjectFields",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 19,
+ "FullName": "fflib_SObjectDomainTest.itShouldReturnTheChangedRecordsBySObjectFields"
+ },
+ {
+ "Id": "07MOy000007kYU6MAM",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnTheChangedRecordsByStringFields",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SObjectDomainTest.itShouldReturnTheChangedRecordsByStringFields"
+ },
+ {
+ "Id": "07MOy000007kYU7MAM",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testDisableTriggerEventsBehaviour",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_SObjectDomainTest.testDisableTriggerEventsBehaviour"
+ },
+ {
+ "Id": "07MOy000007kYU8MAM",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testErrorLogging",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SObjectDomainTest.testErrorLogging"
+ },
+ {
+ "Id": "07MOy000007kYU9MAM",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testGetChangedFieldsAsStrings",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SObjectDomainTest.testGetChangedFieldsAsStrings"
+ },
+ {
+ "Id": "07MOy000007kYUAMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testInsertValidationFailedWithoutDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectDomainTest.testInsertValidationFailedWithoutDML"
+ },
+ {
+ "Id": "07MOy000007kYUBMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testObjectSecurity",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 154,
+ "FullName": "fflib_SObjectDomainTest.testObjectSecurity"
+ },
+ {
+ "Id": "07MOy000007kYUCMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testOnAfterUndeleteWithoutDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectDomainTest.testOnAfterUndeleteWithoutDML"
+ },
+ {
+ "Id": "07MOy000007kYUDMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testOnBeforeDeleteWithoutDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SObjectDomainTest.testOnBeforeDeleteWithoutDML"
+ },
+ {
+ "Id": "07MOy000007kYUEMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testOnValidateBehaviorDefault",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SObjectDomainTest.testOnValidateBehaviorDefault"
+ },
+ {
+ "Id": "07MOy000007kYUFMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testOnValidateBehaviorOld",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectDomainTest.testOnValidateBehaviorOld"
+ },
+ {
+ "Id": "07MOy000007kYUGMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRecursiveTriggerState",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectDomainTest.testRecursiveTriggerState"
+ },
+ {
+ "Id": "07MOy000007kYUHMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testTriggerState",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SObjectDomainTest.testTriggerState"
+ },
+ {
+ "Id": "07MOy000007kYUIMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testUpdateValidationFailedWithoutDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectDomainTest.testUpdateValidationFailedWithoutDML"
+ },
+ {
+ "Id": "07MOy000007kYUJMA2",
+ "QueueItemId": "709Oy000006AA2iIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testValidationWithoutDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfBIAU",
+ "Name": "fflib_SObjectDomainTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectDomainTest.testValidationWithoutDML"
+ },
+ {
+ "Id": "07MOy000007kQi8MAE",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testSetup",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 869,
+ "FullName": "fflib_SObjectSelectorTest.testSetup"
+ },
+ {
+ "Id": "07MOy000007kQi9MAE",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAddQueryFactorySubselect",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 124,
+ "FullName": "fflib_SObjectSelectorTest.testAddQueryFactorySubselect"
+ },
+ {
+ "Id": "07MOy000007kQiAMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAddQueryFactorySubselect2",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_SObjectSelectorTest.testAddQueryFactorySubselect2"
+ },
+ {
+ "Id": "07MOy000007kQiBMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAssertIsAccessible",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 257,
+ "FullName": "fflib_SObjectSelectorTest.testAssertIsAccessible"
+ },
+ {
+ "Id": "07MOy000007kQiCMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testCRUDOff",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 245,
+ "FullName": "fflib_SObjectSelectorTest.testCRUDOff"
+ },
+ {
+ "Id": "07MOy000007kQiDMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testConfigureQueryFactoryFields",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_SObjectSelectorTest.testConfigureQueryFactoryFields"
+ },
+ {
+ "Id": "07MOy000007kQiEMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testDefaultConfig",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SObjectSelectorTest.testDefaultConfig"
+ },
+ {
+ "Id": "07MOy000007kQiFMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testGetFieldListString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_SObjectSelectorTest.testGetFieldListString"
+ },
+ {
+ "Id": "07MOy000007kQiGMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testGetRelatedFieldListString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_SObjectSelectorTest.testGetRelatedFieldListString"
+ },
+ {
+ "Id": "07MOy000007kQiHMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testGetSObjectName",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectSelectorTest.testGetSObjectName"
+ },
+ {
+ "Id": "07MOy000007kQiIMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testQueryLocatorById",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 117,
+ "FullName": "fflib_SObjectSelectorTest.testQueryLocatorById"
+ },
+ {
+ "Id": "07MOy000007kQiJMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testSOQL",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_SObjectSelectorTest.testSOQL"
+ },
+ {
+ "Id": "07MOy000007kQiKMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testSOQL_defaultSorting",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_SObjectSelectorTest.testSOQL_defaultSorting"
+ },
+ {
+ "Id": "07MOy000007kQiLMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testSelectSObjectsById",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 78,
+ "FullName": "fflib_SObjectSelectorTest.testSelectSObjectsById"
+ },
+ {
+ "Id": "07MOy000007kQiMMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testWithOrderingNullsLast",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_SObjectSelectorTest.testWithOrderingNullsLast"
+ },
+ {
+ "Id": "07MOy000007kQiNMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testWithoutSorting",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectSelectorTest.testWithoutSorting"
+ },
+ {
+ "Id": "07MOy000007kQiOMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_PolymorphicSelectInMulticurrency_Expect_RelatedType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 40,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_PolymorphicSelectInMulticurrency_Expect_RelatedType"
+ },
+ {
+ "Id": "07MOy000007kQiPMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_PolymorphicSelect_Expect_RelatedType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 17,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_PolymorphicSelect_Expect_RelatedType"
+ },
+ {
+ "Id": "07MOy000007kQiQMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_SystemModeAndChildRelationship_Expect_WellFormedSOQL",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 23,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_SystemModeAndChildRelationship_Expect_WellFormedSOQL"
+ },
+ {
+ "Id": "07MOy000007kQiRMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_SystemModeAndParentRelationshipAndDuplicateFields_Expect_WellFormedSOQL",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_SystemModeAndParentRelationshipAndDuplicateFields_Expect_WellFormedSOQL"
+ },
+ {
+ "Id": "07MOy000007kQiSMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_SystemModeAndUserCannnotReadField_Expect_Success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 591,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_SystemModeAndUserCannnotReadField_Expect_Success"
+ },
+ {
+ "Id": "07MOy000007kQiTMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_SystemModeAndUserCannnotReadObject_Expect_Success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 531,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_SystemModeAndUserCannnotReadObject_Expect_Success"
+ },
+ {
+ "Id": "07MOy000007kQiUMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_SystemModePolymorphicSelect_Expect_RelatedType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_SystemModePolymorphicSelect_Expect_RelatedType"
+ },
+ {
+ "Id": "07MOy000007kQiVMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_UserModeAndUserCannnotReadField_Expect_QueryException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 590,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_UserModeAndUserCannnotReadField_Expect_QueryException"
+ },
+ {
+ "Id": "07MOy000007kQiWMAU",
+ "QueueItemId": "709Oy000006AA2kIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toSOQL_When_UserModeAndUserCannnotReadObject_Expect_QueryException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfEIAU",
+ "Name": "fflib_SObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 403,
+ "FullName": "fflib_SObjectSelectorTest.toSOQL_When_UserModeAndUserCannnotReadObject_Expect_QueryException"
+ },
+ {
+ "Id": "07MOy000007kY4HMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructUserModeDML_When_AccessLevelSupplied_Expect_SameAccessLevel",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 19,
+ "FullName": "fflib_SObjectUnitOfWorkTest.constructUserModeDML_When_AccessLevelSupplied_Expect_SameAccessLevel"
+ },
+ {
+ "Id": "07MOy000007kY4IMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructUserModeDML_When_DefaultConstructor_Expect_UserMode",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectUnitOfWorkTest.constructUserModeDML_When_DefaultConstructor_Expect_UserMode"
+ },
+ {
+ "Id": "07MOy000007kY4JMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAssertForEventSObjectType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 17,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testAssertForEventSObjectType"
+ },
+ {
+ "Id": "07MOy000007kY4KMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAssertForEventSObjectType_ThrowExceptionOnNonEventObject",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testAssertForEventSObjectType_ThrowExceptionOnNonEventObject"
+ },
+ {
+ "Id": "07MOy000007kY4LMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAssertForNonEventSObjectType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testAssertForNonEventSObjectType"
+ },
+ {
+ "Id": "07MOy000007kY4MMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAssertForNonEventSObjectType_ThrowExceptionOnEventObject",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testAssertForNonEventSObjectType_ThrowExceptionOnEventObject"
+ },
+ {
+ "Id": "07MOy000007kY4NMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testAssertForSupportedSObjectType_throwExceptionOnUnsupportedType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testAssertForSupportedSObjectType_throwExceptionOnUnsupportedType"
+ },
+ {
+ "Id": "07MOy000007kY4OMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testDerivedUnitOfWork_CommitDMLFail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 45,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testDerivedUnitOfWork_CommitDMLFail"
+ },
+ {
+ "Id": "07MOy000007kY4PMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testDerivedUnitOfWork_CommitDoWorkFail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testDerivedUnitOfWork_CommitDoWorkFail"
+ },
+ {
+ "Id": "07MOy000007kY4QMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testDerivedUnitOfWork_CommitSuccess",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testDerivedUnitOfWork_CommitSuccess"
+ },
+ {
+ "Id": "07MOy000007kY4RMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterDeleted",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterDeleted"
+ },
+ {
+ "Id": "07MOy000007kY4SMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterDirtyRecordsWithDirtyFields",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterDirtyRecordsWithDirtyFields"
+ },
+ {
+ "Id": "07MOy000007kY4TMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterDirtyRecordsWithDirtyFields_failing",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterDirtyRecordsWithDirtyFields_failing"
+ },
+ {
+ "Id": "07MOy000007kY4UMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterDirty_ExpectReplacement",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterDirty_ExpectReplacement"
+ },
+ {
+ "Id": "07MOy000007kY4VMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterDirty_ThrowExceptionOnNewRecord",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterDirty_ThrowExceptionOnNewRecord"
+ },
+ {
+ "Id": "07MOy000007kY4WMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterDirty_field",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterDirty_field"
+ },
+ {
+ "Id": "07MOy000007kY4XMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterEmptyRecycleBin",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterEmptyRecycleBin"
+ },
+ {
+ "Id": "07MOy000007kY4YMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterNew_ThrowExceptionOnDirtyRecord",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterNew_ThrowExceptionOnDirtyRecord"
+ },
+ {
+ "Id": "07MOy000007kY4ZMAU",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterPermanentlyDeleted",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterPermanentlyDeleted"
+ },
+ {
+ "Id": "07MOy000007kY4aMAE",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testRegisterUpsert",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testRegisterUpsert"
+ },
+ {
+ "Id": "07MOy000007kY4bMAE",
+ "QueueItemId": "709Oy000006AA2lIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testUnitOfWorkEmail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfGIAU",
+ "Name": "fflib_SObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_SObjectUnitOfWorkTest.testUnitOfWorkEmail"
+ },
+ {
+ "Id": "07MOy000007kQoOMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldClearTheField",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 39,
+ "FullName": "fflib_SObjectsTest.itShouldClearTheField"
+ },
+ {
+ "Id": "07MOy000007kQoPMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnFieldValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectsTest.itShouldReturnFieldValues"
+ },
+ {
+ "Id": "07MOy000007kQoQMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnRecordsIds",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_SObjectsTest.itShouldReturnRecordsIds"
+ },
+ {
+ "Id": "07MOy000007kQoRMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnRecordsWithAllFieldValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_SObjectsTest.itShouldReturnRecordsWithAllFieldValues"
+ },
+ {
+ "Id": "07MOy000007kQoSMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnRecordsWithFieldValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectsTest.itShouldReturnRecordsWithFieldValues"
+ },
+ {
+ "Id": "07MOy000007kQoTMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnRecordsWithShippingCountry",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectsTest.itShouldReturnRecordsWithShippingCountry"
+ },
+ {
+ "Id": "07MOy000007kQoUMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnRecordsWithoutAllFieldValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectsTest.itShouldReturnRecordsWithoutAllFieldValues"
+ },
+ {
+ "Id": "07MOy000007kQoVMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnRecordsWithoutFieldValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectsTest.itShouldReturnRecordsWithoutFieldValues"
+ },
+ {
+ "Id": "07MOy000007kQoWMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnTheDomainsType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectsTest.itShouldReturnTheDomainsType"
+ },
+ {
+ "Id": "07MOy000007kQoXMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldSetFieldValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectsTest.itShouldSetFieldValue"
+ },
+ {
+ "Id": "07MOy000007kQoYMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldSetFieldValueByCondition",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_SObjectsTest.itShouldSetFieldValueByCondition"
+ },
+ {
+ "Id": "07MOy000007kQoZMAU",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testDomainErrorLogging",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectsTest.testDomainErrorLogging"
+ },
+ {
+ "Id": "07MOy000007kQoaMAE",
+ "QueueItemId": "709Oy000006AA2mIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testErrorLogging",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAfIIAU",
+ "Name": "fflib_SObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_SObjectsTest.testErrorLogging"
+ },
+ {
+ "Id": "07MOy000007kWVaMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldContainAllTheObjects",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ObjectsTest.itShouldContainAllTheObjects"
+ },
+ {
+ "Id": "07MOy000007kWVbMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldContainTheObject",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_ObjectsTest.itShouldContainTheObject"
+ },
+ {
+ "Id": "07MOy000007kWVcMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldGetTheObjectType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "fflib_ObjectsTest.itShouldGetTheObjectType"
+ },
+ {
+ "Id": "07MOy000007kWVdMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldHaveAnEmptyDomain",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "fflib_ObjectsTest.itShouldHaveAnEmptyDomain"
+ },
+ {
+ "Id": "07MOy000007kWVeMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldNotBeAnEmptyDomain",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "fflib_ObjectsTest.itShouldNotBeAnEmptyDomain"
+ },
+ {
+ "Id": "07MOy000007kWVfMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldNotContainTheObject",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "fflib_ObjectsTest.itShouldNotContainTheObject"
+ },
+ {
+ "Id": "07MOy000007kWVgMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldNotContainTheObjects",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "fflib_ObjectsTest.itShouldNotContainTheObjects"
+ },
+ {
+ "Id": "07MOy000007kWVhMAM",
+ "QueueItemId": "709Oy000006AA2nIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldReturnTheCorrectType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf5IAE",
+ "Name": "fflib_ObjectsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "fflib_ObjectsTest.itShouldReturnTheCorrectType"
+ },
+ {
+ "Id": "07MOy000007kPU9MAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueriesWithChildRelationshipNoAccessibleCheck_fail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 144,
+ "FullName": "fflib_QueryFactoryTest.addChildQueriesWithChildRelationshipNoAccessibleCheck_fail"
+ },
+ {
+ "Id": "07MOy000007kPUAMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueriesWithChildRelationshipNoAccessibleCheck_success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 22,
+ "FullName": "fflib_QueryFactoryTest.addChildQueriesWithChildRelationshipNoAccessibleCheck_success"
+ },
+ {
+ "Id": "07MOy000007kPUBMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueriesWithChildRelationshipObjCheckIsAccessible_success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 18,
+ "FullName": "fflib_QueryFactoryTest.addChildQueriesWithChildRelationshipObjCheckIsAccessible_success"
+ },
+ {
+ "Id": "07MOy000007kPUCMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueriesWithChildRelationshipObj_success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_QueryFactoryTest.addChildQueriesWithChildRelationshipObj_success"
+ },
+ {
+ "Id": "07MOy000007kPUDMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueriesWithChildRelationship_success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_QueryFactoryTest.addChildQueriesWithChildRelationship_success"
+ },
+ {
+ "Id": "07MOy000007kPUEMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueries_invalidChildRelationship",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_QueryFactoryTest.addChildQueries_invalidChildRelationship"
+ },
+ {
+ "Id": "07MOy000007kPUFMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueries_invalidChildRelationshipTooDeep",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 25,
+ "FullName": "fflib_QueryFactoryTest.addChildQueries_invalidChildRelationshipTooDeep"
+ },
+ {
+ "Id": "07MOy000007kPUGMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQueries_success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_QueryFactoryTest.addChildQueries_success"
+ },
+ {
+ "Id": "07MOy000007kPUHMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "addChildQuerySameRelationshipAgain_success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 24,
+ "FullName": "fflib_QueryFactoryTest.addChildQuerySameRelationshipAgain_success"
+ },
+ {
+ "Id": "07MOy000007kPUIMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "checkFieldObjectReadSort_success",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_QueryFactoryTest.checkFieldObjectReadSort_success"
+ },
+ {
+ "Id": "07MOy000007kPUJMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "checkFieldRead_fail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 379,
+ "FullName": "fflib_QueryFactoryTest.checkFieldRead_fail"
+ },
+ {
+ "Id": "07MOy000007kPUKMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "checkObjectRead_fail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 203,
+ "FullName": "fflib_QueryFactoryTest.checkObjectRead_fail"
+ },
+ {
+ "Id": "07MOy000007kPULMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "deepCloneBasic",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_QueryFactoryTest.deepCloneBasic"
+ },
+ {
+ "Id": "07MOy000007kPUMMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "deepCloneBasicNoChanges",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_QueryFactoryTest.deepCloneBasicNoChanges"
+ },
+ {
+ "Id": "07MOy000007kPUNMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "deepCloneSubquery",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 116,
+ "FullName": "fflib_QueryFactoryTest.deepCloneSubquery"
+ },
+ {
+ "Id": "07MOy000007kPUOMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "deepCloneSubqueryNoChanges",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_QueryFactoryTest.deepCloneSubqueryNoChanges"
+ },
+ {
+ "Id": "07MOy000007kPUPMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "deterministic_toSOQL",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_QueryFactoryTest.deterministic_toSOQL"
+ },
+ {
+ "Id": "07MOy000007kPUQMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "duplicateFieldSelection",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QueryFactoryTest.duplicateFieldSelection"
+ },
+ {
+ "Id": "07MOy000007kPURMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "equalityCheck",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QueryFactoryTest.equalityCheck"
+ },
+ {
+ "Id": "07MOy000007kPUSMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "fieldSelections",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_QueryFactoryTest.fieldSelections"
+ },
+ {
+ "Id": "07MOy000007kPUTMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "invalidCrossObjectField",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_QueryFactoryTest.invalidCrossObjectField"
+ },
+ {
+ "Id": "07MOy000007kPUUMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "invalidFieldTests",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QueryFactoryTest.invalidFieldTests"
+ },
+ {
+ "Id": "07MOy000007kPUVMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "invalidField_nullToken",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QueryFactoryTest.invalidField_nullToken"
+ },
+ {
+ "Id": "07MOy000007kPUWMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "invalidField_string",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QueryFactoryTest.invalidField_string"
+ },
+ {
+ "Id": "07MOy000007kPUXMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "invalidFields_noQueryField",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_QueryFactoryTest.invalidFields_noQueryField"
+ },
+ {
+ "Id": "07MOy000007kPUYMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "invalidFields_nullToken",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QueryFactoryTest.invalidFields_nullToken"
+ },
+ {
+ "Id": "07MOy000007kPUZMA2",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "invalidFields_string",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QueryFactoryTest.invalidFields_string"
+ },
+ {
+ "Id": "07MOy000007kPUaMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "nonReferenceField",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QueryFactoryTest.nonReferenceField"
+ },
+ {
+ "Id": "07MOy000007kPUbMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "ordering",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QueryFactoryTest.ordering"
+ },
+ {
+ "Id": "07MOy000007kPUcMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "queryFieldsNotEquals",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_QueryFactoryTest.queryFieldsNotEquals"
+ },
+ {
+ "Id": "07MOy000007kPUdMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "queryWith_noFields",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QueryFactoryTest.queryWith_noFields"
+ },
+ {
+ "Id": "07MOy000007kPUeMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "setOrdering_ReplacesPreviousOrderingsWithExpectedOrdering",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_QueryFactoryTest.setOrdering_ReplacesPreviousOrderingsWithExpectedOrdering"
+ },
+ {
+ "Id": "07MOy000007kPUfMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "simpleFieldCondition",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QueryFactoryTest.simpleFieldCondition"
+ },
+ {
+ "Id": "07MOy000007kPUgMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "simpleFieldSelection",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QueryFactoryTest.simpleFieldSelection"
+ },
+ {
+ "Id": "07MOy000007kPUhMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testSoql_allRows",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QueryFactoryTest.testSoql_allRows"
+ },
+ {
+ "Id": "07MOy000007kPUiMAM",
+ "QueueItemId": "709Oy000006AA2oIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "testSoql_unsortedSelectFields",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf7IAE",
+ "Name": "fflib_QueryFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_QueryFactoryTest.testSoql_unsortedSelectFields"
+ },
+ {
+ "Id": "07MOy000007kQQNMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "FieldsMap",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 28,
+ "FullName": "fflib_SObjectDescribeTest.FieldsMap"
+ },
+ {
+ "Id": "07MOy000007kQQOMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "GlobalDescribeMap",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SObjectDescribeTest.GlobalDescribeMap"
+ },
+ {
+ "Id": "07MOy000007kQQPMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "NamespacedAttributeMap_implementations",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 107,
+ "FullName": "fflib_SObjectDescribeTest.NamespacedAttributeMap_implementations"
+ },
+ {
+ "Id": "07MOy000007kQQQMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "flushCache",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 27,
+ "FullName": "fflib_SObjectDescribeTest.flushCache"
+ },
+ {
+ "Id": "07MOy000007kQQRMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "getAccountDescribes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 25,
+ "FullName": "fflib_SObjectDescribeTest.getAccountDescribes"
+ },
+ {
+ "Id": "07MOy000007kQQSMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "getDescribe_badInput",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_SObjectDescribeTest.getDescribe_badInput"
+ },
+ {
+ "Id": "07MOy000007kQQTMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "rawGlobalDescribeCheck",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 47,
+ "FullName": "fflib_SObjectDescribeTest.rawGlobalDescribeCheck"
+ },
+ {
+ "Id": "07MOy000007kQQUMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "simpleAccountFieldDescribe",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_SObjectDescribeTest.simpleAccountFieldDescribe"
+ },
+ {
+ "Id": "07MOy000007kQQVMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "simpleAccountFieldSetDescribe",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_SObjectDescribeTest.simpleAccountFieldSetDescribe"
+ },
+ {
+ "Id": "07MOy000007kQQWMA2",
+ "QueueItemId": "709Oy000006AA2pIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "simpleAccountGetNameField",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAf9IAE",
+ "Name": "fflib_SObjectDescribeTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_SObjectDescribeTest.simpleAccountGetNameField"
+ },
+ {
+ "Id": "07MOy000007kYAjMAM",
+ "QueueItemId": "709Oy000006AA2qIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "DomainProcessInjectionMethodTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAleIAE",
+ "Name": "DomainProcessInjectionTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 136,
+ "FullName": "DomainProcessInjectionTest.DomainProcessInjectionMethodTest"
+ },
+ {
+ "Id": "07MOy000007kYAkMAM",
+ "QueueItemId": "709Oy000006AA2qIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "accountInsertTwoCriteria",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAleIAE",
+ "Name": "DomainProcessInjectionTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 234,
+ "FullName": "DomainProcessInjectionTest.accountInsertTwoCriteria"
+ },
+ {
+ "Id": "07MOy000007kYAlMAM",
+ "QueueItemId": "709Oy000006AA2qIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "accountUpdateTwoCriteria",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAleIAE",
+ "Name": "DomainProcessInjectionTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 82,
+ "FullName": "DomainProcessInjectionTest.accountUpdateTwoCriteria"
+ },
+ {
+ "Id": "07MOy000007kYAmMAM",
+ "QueueItemId": "709Oy000006AA2qIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "accountUpdateTwoCriteriaAsync",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAleIAE",
+ "Name": "DomainProcessInjectionTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 209,
+ "FullName": "DomainProcessInjectionTest.accountUpdateTwoCriteriaAsync"
+ },
+ {
+ "Id": "07MOy000007kYAnMAM",
+ "QueueItemId": "709Oy000006AA2qIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyDomainProcessCoordinatorConstructorException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAleIAE",
+ "Name": "DomainProcessInjectionTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "DomainProcessInjectionTest.verifyDomainProcessCoordinatorConstructorException"
+ },
+ {
+ "Id": "07MOy000007kYAoMAM",
+ "QueueItemId": "709Oy000006AA2qIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyNewInstanceExceptionWithBadParams",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAleIAE",
+ "Name": "DomainProcessInjectionTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "DomainProcessInjectionTest.verifyNewInstanceExceptionWithBadParams"
+ },
+ {
+ "Id": "07MOy000007kYApMAM",
+ "QueueItemId": "709Oy000006AA2qIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyNewInstanceExceptionWithNullParams",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAleIAE",
+ "Name": "DomainProcessInjectionTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "DomainProcessInjectionTest.verifyNewInstanceExceptionWithNullParams"
+ },
+ {
+ "Id": "07MOy000007kLLhMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAT4DXImmediateMessagePublishedToEventBusTriggerHandlerProcessesEvent",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 418,
+ "FullName": "PlatformEventDistributorTest.whenAT4DXImmediateMessagePublishedToEventBusTriggerHandlerProcessesEvent"
+ },
+ {
+ "Id": "07MOy000007kLLiMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAT4DXMessagePublishedToEventBusTriggerHandlerProcessesEvent",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 243,
+ "FullName": "PlatformEventDistributorTest.whenAT4DXMessagePublishedToEventBusTriggerHandlerProcessesEvent"
+ },
+ {
+ "Id": "07MOy000007kLLjMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenInvalidConsumerSuppliedExceptionThrown",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 149,
+ "FullName": "PlatformEventDistributorTest.whenInvalidConsumerSuppliedExceptionThrown"
+ },
+ {
+ "Id": "07MOy000007kLLkMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenTriggerHandlerInvokedWithEventsWithoutCategoryOrEventNameFieldExceptionThrown",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "PlatformEventDistributorTest.whenTriggerHandlerInvokedWithEventsWithoutCategoryOrEventNameFieldExceptionThrown"
+ },
+ {
+ "Id": "07MOy000007kLLlMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenTriggerHandlerInvokedWithMatchEventBus",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 76,
+ "FullName": "PlatformEventDistributorTest.whenTriggerHandlerInvokedWithMatchEventBus"
+ },
+ {
+ "Id": "07MOy000007kLLmMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenTriggerHandlerInvokedWithMatchEventBusAndCategory",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 80,
+ "FullName": "PlatformEventDistributorTest.whenTriggerHandlerInvokedWithMatchEventBusAndCategory"
+ },
+ {
+ "Id": "07MOy000007kLLnMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenTriggerHandlerInvokedWithMatchEventBusAndCategoryAndEventName",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 68,
+ "FullName": "PlatformEventDistributorTest.whenTriggerHandlerInvokedWithMatchEventBusAndCategoryAndEventName"
+ },
+ {
+ "Id": "07MOy000007kLLoMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenTriggerHandlerInvokedWithMatchEventBusAndEventName",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 83,
+ "FullName": "PlatformEventDistributorTest.whenTriggerHandlerInvokedWithMatchEventBusAndEventName"
+ },
+ {
+ "Id": "07MOy000007kLLpMAM",
+ "QueueItemId": "709Oy000006AA2rIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenTriggerHandlerInvokedWithMatchEventBusWithAsynchronousSubscriber",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm2IAE",
+ "Name": "PlatformEventDistributorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 141,
+ "FullName": "PlatformEventDistributorTest.whenTriggerHandlerInvokedWithMatchEventBusWithAsynchronousSubscriber"
+ },
+ {
+ "Id": "07MOy000007kYCLMA2",
+ "QueueItemId": "709Oy000006AA2sIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "equalsReturnsExpectedResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hWIAQ",
+ "Name": "fflib_QualifiedMethodTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_QualifiedMethodTest.equalsReturnsExpectedResults"
+ },
+ {
+ "Id": "07MOy000007kYCMMA2",
+ "QueueItemId": "709Oy000006AA2sIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "equalsReturnsExpectedResultsForHasDependentMocks",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hWIAQ",
+ "Name": "fflib_QualifiedMethodTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_QualifiedMethodTest.equalsReturnsExpectedResultsForHasDependentMocks"
+ },
+ {
+ "Id": "07MOy000007kYCNMA2",
+ "QueueItemId": "709Oy000006AA2sIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "hashCodeReturnsExpectedResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hWIAQ",
+ "Name": "fflib_QualifiedMethodTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_QualifiedMethodTest.hashCodeReturnsExpectedResults"
+ },
+ {
+ "Id": "07MOy000007kYCOMA2",
+ "QueueItemId": "709Oy000006AA2sIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "hashCodeReturnsExpectedResultsForHasDependentMocks",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hWIAQ",
+ "Name": "fflib_QualifiedMethodTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QualifiedMethodTest.hashCodeReturnsExpectedResultsForHasDependentMocks"
+ },
+ {
+ "Id": "07MOy000007kYCPMA2",
+ "QueueItemId": "709Oy000006AA2sIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "toStringReturnsExpectedResult",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hWIAQ",
+ "Name": "fflib_QualifiedMethodTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_QualifiedMethodTest.toStringReturnsExpectedResult"
+ },
+ {
+ "Id": "07MOy000007kYQrMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenANewConfigSettingThenGetThatInstance",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 450,
+ "FullName": "di_PlatformCacheTest.givenANewConfigSettingThenGetThatInstance"
+ },
+ {
+ "Id": "07MOy000007kYQsMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenCacheMapAddedThenGetKeys",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "di_PlatformCacheTest.givenCacheMapAddedThenGetKeys"
+ },
+ {
+ "Id": "07MOy000007kYQtMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenCachedBindingsClearThenGetEmpty",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 32,
+ "FullName": "di_PlatformCacheTest.givenCachedBindingsClearThenGetEmpty"
+ },
+ {
+ "Id": "07MOy000007kYQuMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenDataInCachePartitionIsEnabledThenGetEmptyKeys",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 42,
+ "FullName": "di_PlatformCacheTest.givenDataInCachePartitionIsEnabledThenGetEmptyKeys"
+ },
+ {
+ "Id": "07MOy000007kYQvMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenDataInCachePartitionIsNotEnabledThenGetEmptyKeys",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 30,
+ "FullName": "di_PlatformCacheTest.givenDataInCachePartitionIsNotEnabledThenGetEmptyKeys"
+ },
+ {
+ "Id": "07MOy000007kYQwMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenDevNameAndSTypeThenGetHashAndKey",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "di_PlatformCacheTest.givenDevNameAndSTypeThenGetHashAndKey"
+ },
+ {
+ "Id": "07MOy000007kYQxMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenInvalidDeveloperNameThenGetEmptyKeys",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 36,
+ "FullName": "di_PlatformCacheTest.givenInvalidDeveloperNameThenGetEmptyKeys"
+ },
+ {
+ "Id": "07MOy000007kYQyMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenInvalidSObjectTypeThenGetEmptyKeys",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 31,
+ "FullName": "di_PlatformCacheTest.givenInvalidSObjectTypeThenGetEmptyKeys"
+ },
+ {
+ "Id": "07MOy000007kYQzMAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenKeyIndexNameThenGetKey",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_PlatformCacheTest.givenKeyIndexNameThenGetKey"
+ },
+ {
+ "Id": "07MOy000007kYR0MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenLogMethodThenGetKeys",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "di_PlatformCacheTest.givenLogMethodThenGetKeys"
+ },
+ {
+ "Id": "07MOy000007kYR1MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenNoDataInCachePartitionThenGetEmptyKeys",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 35,
+ "FullName": "di_PlatformCacheTest.givenNoDataInCachePartitionThenGetEmptyKeys"
+ },
+ {
+ "Id": "07MOy000007kYR2MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenNoPlatformCacheInstanceThenCreate",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_PlatformCacheTest.givenNoPlatformCacheInstanceThenCreate"
+ },
+ {
+ "Id": "07MOy000007kYR3MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenPartitionNameSetThenGetNonNull",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 27,
+ "FullName": "di_PlatformCacheTest.givenPartitionNameSetThenGetNonNull"
+ },
+ {
+ "Id": "07MOy000007kYR4MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenPartitionTTLSetThenGetSeconds",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_PlatformCacheTest.givenPartitionTTLSetThenGetSeconds"
+ },
+ {
+ "Id": "07MOy000007kYR5MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenPlatformCacheConfigThenCreate",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_PlatformCacheTest.givenPlatformCacheConfigThenCreate"
+ },
+ {
+ "Id": "07MOy000007kYR6MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenReadOnlyAccessThenGetInstance",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 186,
+ "FullName": "di_PlatformCacheTest.givenReadOnlyAccessThenGetInstance"
+ },
+ {
+ "Id": "07MOy000007kYR7MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenStoringBindingIsTrueThenGet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 32,
+ "FullName": "di_PlatformCacheTest.givenStoringBindingIsTrueThenGet"
+ },
+ {
+ "Id": "07MOy000007kYR8MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenValidBindingThenAddBinding",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "di_PlatformCacheTest.givenValidBindingThenAddBinding"
+ },
+ {
+ "Id": "07MOy000007kYR9MAM",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenValidSTypeAndNameThenHash",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "di_PlatformCacheTest.givenValidSTypeAndNameThenHash"
+ },
+ {
+ "Id": "07MOy000007kYRAMA2",
+ "QueueItemId": "709Oy000006AA2uIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenValidTSTypeAndNameThenHash",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgnIAE",
+ "Name": "di_PlatformCacheTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_PlatformCacheTest.givenValidTSTypeAndNameThenHash"
+ },
+ {
+ "Id": "07MOy000007kYInMAM",
+ "QueueItemId": "709Oy000006AA2vIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "equalsReturnsExpectedResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hVIAQ",
+ "Name": "fflib_QualifiedMethodAndArgValuesTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 27,
+ "FullName": "fflib_QualifiedMethodAndArgValuesTest.equalsReturnsExpectedResults"
+ },
+ {
+ "Id": "07MOy000007kYNdMAM",
+ "QueueItemId": "709Oy000006AA2wIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "getSObjectFieldListTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlTIAU",
+ "Name": "ApplicationSObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 257,
+ "FullName": "ApplicationSObjectSelectorTest.getSObjectFieldListTest"
+ },
+ {
+ "Id": "07MOy000007kYNeMAM",
+ "QueueItemId": "709Oy000006AA2wIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "selectionInjectionTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlTIAU",
+ "Name": "ApplicationSObjectSelectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 157,
+ "FullName": "ApplicationSObjectSelectorTest.selectionInjectionTest"
+ },
+ {
+ "Id": "07MOy000007kWSbMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyApplicationSobjectUOWConstructorWithDML",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 115,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyApplicationSobjectUOWConstructorWithDML"
+ },
+ {
+ "Id": "07MOy000007kWScMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyGetDeletedRecordsByType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyGetDeletedRecordsByType"
+ },
+ {
+ "Id": "07MOy000007kWSdMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyRegisterDirtyWithParentRecord",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 195,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyRegisterDirtyWithParentRecord"
+ },
+ {
+ "Id": "07MOy000007kWSeMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyRegisterEmails",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 53,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyRegisterEmails"
+ },
+ {
+ "Id": "07MOy000007kWSfMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyRegisterNewWithParentRecord",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 134,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyRegisterNewWithParentRecord"
+ },
+ {
+ "Id": "07MOy000007kWSgMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyRegisterSingleRecordReturnDirtyRecordsByType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyRegisterSingleRecordReturnDirtyRecordsByType"
+ },
+ {
+ "Id": "07MOy000007kWShMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyRegisterSingleRecordReturnsNewRecordsByType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyRegisterSingleRecordReturnsNewRecordsByType"
+ },
+ {
+ "Id": "07MOy000007kWSiMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyRegisteredRecordListReturnDirtyRecordsByType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyRegisteredRecordListReturnDirtyRecordsByType"
+ },
+ {
+ "Id": "07MOy000007kWSjMAM",
+ "QueueItemId": "709Oy000006AA2zIAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyRegisteredRecordListReturnsNewRecordsByType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlXIAU",
+ "Name": "ApplicationSObjectUnitOfWorkTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "ApplicationSObjectUnitOfWorkTest.verifyRegisteredRecordListReturnsNewRecordsByType"
+ },
+ {
+ "Id": "07MOy000007kTMUMA2",
+ "QueueItemId": "709Oy000006AA31IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "equalsReturnsExpectedResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hMIAQ",
+ "Name": "fflib_MethodArgValuesTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 21,
+ "FullName": "fflib_MethodArgValuesTest.equalsReturnsExpectedResults"
+ },
+ {
+ "Id": "07MOy000007kTMVMA2",
+ "QueueItemId": "709Oy000006AA31IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "hashCodeReturnsExpectedResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hMIAQ",
+ "Name": "fflib_MethodArgValuesTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_MethodArgValuesTest.hashCodeReturnsExpectedResults"
+ },
+ {
+ "Id": "07MOy000007kUbvMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeAfter_WithNullFromDatetime_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 134,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeAfter_WithNullFromDatetime_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUbwMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeAfter_WithNullInclusive_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeAfter_WithNullInclusive_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUbxMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeBefore_WithNullInclusive_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeBefore_WithNullInclusive_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUbyMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeBefore_WithNullToDatetime_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 67,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeBefore_WithNullToDatetime_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUbzMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeBetween_WithNullFromDatetime_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 71,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeBetween_WithNullFromDatetime_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc0MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeBetween_WithNullInclusiveFrom_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeBetween_WithNullInclusiveFrom_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc1MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeBetween_WithNullInclusiveTo_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeBetween_WithNullInclusiveTo_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc2MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDatetimeBetween_WithNullToDatetime_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 52,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDatetimeBetween_WithNullToDatetime_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc3MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalBetween_WithNullInclusiveLower_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 51,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalBetween_WithNullInclusiveLower_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc4MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalBetween_WithNullInclusiveUpper_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalBetween_WithNullInclusiveUpper_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc5MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalBetween_WithNullLower_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalBetween_WithNullLower_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc6MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalBetween_WithNullUpper_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalBetween_WithNullUpper_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc7MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalLessThan_WithNullInclusive_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalLessThan_WithNullInclusive_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc8MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalLessThan_WithNullToMatch_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalLessThan_WithNullToMatch_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUc9MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalMoreThan_WithNullInclusive_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 53,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalMoreThan_WithNullInclusive_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcAMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructDecimalMoreThan_WithNullToMatch_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 59,
+ "FullName": "fflib_MatcherDefinitionsTest.constructDecimalMoreThan_WithNullToMatch_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcBMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructEq_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.constructEq_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcCMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructFieldSetEquivalentTo_WithNullFieldSet_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.constructFieldSetEquivalentTo_WithNullFieldSet_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcDMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructRefEq_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.constructRefEq_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcEMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructSObjectOfType_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.constructSObjectOfType_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcFMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructSObjectWithId_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.constructSObjectWithId_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcGMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructSObjectWithName_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 174,
+ "FullName": "fflib_MatcherDefinitionsTest.constructSObjectWithName_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcHMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructSObjectWith_WithEmptyArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.constructSObjectWith_WithEmptyArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcIMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructSObjectWith_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 53,
+ "FullName": "fflib_MatcherDefinitionsTest.constructSObjectWith_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcJMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructSObjectsWith_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.constructSObjectsWith_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcKMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructStringContains_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 72,
+ "FullName": "fflib_MatcherDefinitionsTest.constructStringContains_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcLMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructStringEndsWith_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.constructStringEndsWith_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcMMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructStringMatches_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_MatcherDefinitionsTest.constructStringMatches_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcNMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "constructStringStartsWith_WithNullArg_ThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.constructStringStartsWith_WithNullArg_ThrowsException"
+ },
+ {
+ "Id": "07MOy000007kUcOMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyBooleanMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyBooleanMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcPMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyBooleanToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyBooleanToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcQMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDateMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDateMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcRMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDateToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 51,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDateToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcSMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDatetimeMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDatetimeMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcTMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDatetimeToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDatetimeToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcUMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDecimalMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDecimalMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcVMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDecimalToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 51,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDecimalToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcWMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDoubleMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 53,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDoubleMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcXMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyDoubleToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyDoubleToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcYMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyFieldSetMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 986,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyFieldSetMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcZMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyFieldSetToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 59,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyFieldSetToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcaMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyIdMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyIdMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcbMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyIdToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyIdToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUccMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyIntegerMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 130,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyIntegerMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcdMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyIntegerToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 62,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyIntegerToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUceMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyListMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyListMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcfMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyListToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyListToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcgMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyLongMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 59,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyLongMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUchMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyLongToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyLongToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUciMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyObjectMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyObjectMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcjMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyObjectToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyObjectToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUckMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnySObjectFieldMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 63,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnySObjectFieldMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUclMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnySObjectFieldToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnySObjectFieldToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcmMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnySObjectMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnySObjectMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcnMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnySObjectToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnySObjectToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcoMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnySObjectTypeMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnySObjectTypeMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcpMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnySObjectTypeToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnySObjectTypeToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcqMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyStringMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 52,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyStringMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcrMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenAnyStringToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenAnyStringToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUcsMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenCombinedMatcherToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 59,
+ "FullName": "fflib_MatcherDefinitionsTest.whenCombinedMatcherToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUctMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenCombinedMatchesWithAllExpressionShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_MatcherDefinitionsTest.whenCombinedMatchesWithAllExpressionShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcuMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenCombinedMatchesWithAtLeastOneExpressionShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenCombinedMatchesWithAtLeastOneExpressionShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcvMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenCombinedMatchesWithNoneExpressionShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenCombinedMatchesWithNoneExpressionShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUcwMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenConstructingCombinedWithEmptyInternalMatchersShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenConstructingCombinedWithEmptyInternalMatchersShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kUcxMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenConstructingCombinedWithNullConnectiveExpressionShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 49,
+ "FullName": "fflib_MatcherDefinitionsTest.whenConstructingCombinedWithNullConnectiveExpressionShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kUcyMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenConstructingCombinedWithNullInternalMatchersShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenConstructingCombinedWithNullInternalMatchersShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kUczMAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeAfterMatchesWithInclusiveShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 52,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeAfterMatchesWithInclusiveShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUd0MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeAfterMatchesWithoutInclusiveShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 53,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeAfterMatchesWithoutInclusiveShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUd1MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeAfterWithInclusiveToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeAfterWithInclusiveToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUd2MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeAfterWithNotInclusiveToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeAfterWithNotInclusiveToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUd3MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBeforeMatchesWithInclusiveShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 63,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBeforeMatchesWithInclusiveShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUd4MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBeforeMatchesWithoutInclusiveShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 52,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBeforeMatchesWithoutInclusiveShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUd5MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBeforeWithInclusiveToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 63,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBeforeWithInclusiveToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUd6MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBeforeWithNotInclusiveToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBeforeWithNotInclusiveToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUd7MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBetweenMatchesWithInclusiveFromWithoutInclusiveToShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBetweenMatchesWithInclusiveFromWithoutInclusiveToShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUd8MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBetweenMatchesWithInclusiveToWithoutInclusiveFromShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBetweenMatchesWithInclusiveToWithoutInclusiveFromShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUd9MAE",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBetweenWithInclusiveToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 62,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBetweenWithInclusiveToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUdAMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDatetimeBetweenWithNotInclusiveToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 63,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDatetimeBetweenWithNotInclusiveToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUdBMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDecimalBetweenMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDecimalBetweenMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUdCMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDecimalBetweenToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 63,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDecimalBetweenToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUdDMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDecimalLessThanMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDecimalLessThanMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUdEMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDecimalLessThanToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 63,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDecimalLessThanToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUdFMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDecimalMoreThanMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 59,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDecimalMoreThanMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUdGMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDecimalMoreThanToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenDecimalMoreThanToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUdHMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenEqMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 66,
+ "FullName": "fflib_MatcherDefinitionsTest.whenEqMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUdIMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenEqToStringShouldReturnExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenEqToStringShouldReturnExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUdJMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenFieldSetEquivalentToMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 875,
+ "FullName": "fflib_MatcherDefinitionsTest.whenFieldSetEquivalentToMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kUdKMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenFieldSetEquivalentToToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 876,
+ "FullName": "fflib_MatcherDefinitionsTest.whenFieldSetEquivalentToToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kUdLMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenFieldSetEquivalentToWithoutFieldSetShouldNeverMatch",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenFieldSetEquivalentToWithoutFieldSetShouldNeverMatch"
+ },
+ {
+ "Id": "07MOy000007kUdMMAU",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenIsBlankWithMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenIsBlankWithMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVhMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenIsNotBlankWithMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenIsNotBlankWithMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYViMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenIsNotNullMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenIsNotNullMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVjMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenIsNotNullToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenIsNotNullToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYVkMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenIsNullMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenIsNullMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVlMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenIsNullToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 52,
+ "FullName": "fflib_MatcherDefinitionsTest.whenIsNullToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYVmMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenJSONExceptionOccursStringifyShouldReturnsObjectToString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenJSONExceptionOccursStringifyShouldReturnsObjectToString"
+ },
+ {
+ "Id": "07MOy000007kYVnMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenListContainsMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenListContainsMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVoMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenListContainsToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenListContainsToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYVpMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenListIsEmptyMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 59,
+ "FullName": "fflib_MatcherDefinitionsTest.whenListIsEmptyMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVqMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenListIsEmptyToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenListIsEmptyToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYVrMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenRefEqMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenRefEqMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVsMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenRefEqToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenRefEqToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYVtMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectOfTypeMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectOfTypeMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVuMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectOfTypeToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectOfTypeToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYVvMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectWithIdMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectWithIdMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVwMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectWithIdToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectWithIdToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYVxMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectWithMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectWithMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVyMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectWithNameMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 76,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectWithNameMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYVzMAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectWithNameToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 59,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectWithNameToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYW0MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectWithToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectWithToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYW1MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectsInAnyOrderWithMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectsInAnyOrderWithMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYW2MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectsWithDifferentArityMatchesShouldReturnFalse",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectsWithDifferentArityMatchesShouldReturnFalse"
+ },
+ {
+ "Id": "07MOy000007kYW3MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectsWithInOrderMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectsWithInOrderMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYW4MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSObjectsWithToStringReturnsExpectedString",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenSObjectsWithToStringReturnsExpectedString"
+ },
+ {
+ "Id": "07MOy000007kYW5MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringContainsMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringContainsMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYW6MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringContainsToStringReturnsExpectedStrings",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 62,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringContainsToStringReturnsExpectedStrings"
+ },
+ {
+ "Id": "07MOy000007kYW7MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringEndsWithMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringEndsWithMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYW8MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringEndsWithToStringReturnsExpectedStrings",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 54,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringEndsWithToStringReturnsExpectedStrings"
+ },
+ {
+ "Id": "07MOy000007kYW9MAM",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringIsBlankToStringReturnsExpectedStrings",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 52,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringIsBlankToStringReturnsExpectedStrings"
+ },
+ {
+ "Id": "07MOy000007kYWAMA2",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringIsNotBlankToStringReturnsExpectedStrings",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringIsNotBlankToStringReturnsExpectedStrings"
+ },
+ {
+ "Id": "07MOy000007kYWBMA2",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringMatchesMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 56,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringMatchesMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYWCMA2",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringMatchesToStringReturnsExpectedStrings",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 55,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringMatchesToStringReturnsExpectedStrings"
+ },
+ {
+ "Id": "07MOy000007kYWDMA2",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringStartsWithMatchesShouldReturnCorrectResults",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 58,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringStartsWithMatchesShouldReturnCorrectResults"
+ },
+ {
+ "Id": "07MOy000007kYWEMA2",
+ "QueueItemId": "709Oy000006AA32IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStringStartsWithToStringReturnsExpectedStrings",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hJIAQ",
+ "Name": "fflib_MatcherDefinitionsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "fflib_MatcherDefinitionsTest.whenStringStartsWithToStringReturnsExpectedStrings"
+ },
+ {
+ "Id": "07MOy000007kPyiMAE",
+ "QueueItemId": "709Oy000006AA33IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenNullInputWhenObjectCreatedThenSetInitialized",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgaIAE",
+ "Name": "di_FlowTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "di_FlowTest.givenNullInputWhenObjectCreatedThenSetInitialized"
+ },
+ {
+ "Id": "07MOy000007kPyjMAE",
+ "QueueItemId": "709Oy000006AA33IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenStringValueWhenOutputThenStringAddedToSet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgaIAE",
+ "Name": "di_FlowTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "di_FlowTest.givenStringValueWhenOutputThenStringAddedToSet"
+ },
+ {
+ "Id": "07MOy000007kPykMAE",
+ "QueueItemId": "709Oy000006AA33IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenVariableNameWhenRequiredThenValueAddedToSet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgaIAE",
+ "Name": "di_FlowTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "di_FlowTest.givenVariableNameWhenRequiredThenValueAddedToSet"
+ },
+ {
+ "Id": "07MOy000007kU1WMAU",
+ "QueueItemId": "709Oy000006AA34IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenValueWhenGetInjectThenThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgcIAE",
+ "Name": "di_InjectorCMPFlowProxyControllerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 30,
+ "FullName": "di_InjectorCMPFlowProxyControllerTest.givenValueWhenGetInjectThenThrowException"
+ },
+ {
+ "Id": "07MOy000007kYPFMA2",
+ "QueueItemId": "709Oy000006AA35IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexPageComponentGetInjectorIsValid",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgeIAE",
+ "Name": "di_InjectorComponentControllerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 18,
+ "FullName": "di_InjectorComponentControllerTest.givenApexPageComponentGetInjectorIsValid"
+ },
+ {
+ "Id": "07MOy000007kYPGMA2",
+ "QueueItemId": "709Oy000006AA35IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenFlowNameWhenGetInjectorFlowProxyInstanceThenMethodCall",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgeIAE",
+ "Name": "di_InjectorComponentControllerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "di_InjectorComponentControllerTest.givenFlowNameWhenGetInjectorFlowProxyInstanceThenMethodCall"
+ },
+ {
+ "Id": "07MOy000007kYPHMA2",
+ "QueueItemId": "709Oy000006AA35IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenLightningComponentGetBindingId",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgeIAE",
+ "Name": "di_InjectorComponentControllerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "di_InjectorComponentControllerTest.givenLightningComponentGetBindingId"
+ },
+ {
+ "Id": "07MOy000007kYPIMA2",
+ "QueueItemId": "709Oy000006AA35IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenWrongBindingNameValueWhenGetInjectThenThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgeIAE",
+ "Name": "di_InjectorComponentControllerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 137,
+ "FullName": "di_InjectorComponentControllerTest.givenWrongBindingNameValueWhenGetInjectThenThrowException"
+ },
+ {
+ "Id": "07MOy000007kSzsMAE",
+ "QueueItemId": "709Oy000006AA36IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyAbstractSelectorMethodInjection",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlKIAU",
+ "Name": "AbstractSelectorMethodInjectableTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 477,
+ "FullName": "AbstractSelectorMethodInjectableTest.verifyAbstractSelectorMethodInjection"
+ },
+ {
+ "Id": "07MOy000007kNJCMA2",
+ "QueueItemId": "709Oy000006AA37IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyAbstractSelectorQueryLocatorInjection",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlMIAU",
+ "Name": "AbstractSelectorQueryLocatorInjectblTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 352,
+ "FullName": "AbstractSelectorQueryLocatorInjectblTest.verifyAbstractSelectorQueryLocatorInjection"
+ },
+ {
+ "Id": "07MOy000007kVDtMAM",
+ "QueueItemId": "709Oy000006AA38IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenStandardControllerWhenObjectCreatedThenConstructorCalled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAghIAE",
+ "Name": "di_InjectorControllerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 264,
+ "FullName": "di_InjectorControllerTest.givenStandardControllerWhenObjectCreatedThenConstructorCalled"
+ },
+ {
+ "Id": "07MOy000007kY97MAE",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenBindingsWithAlternateObjectNameThenBindingIsReturned",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 52,
+ "FullName": "di_InjectorTest.givenBindingsWithAlternateObjectNameThenBindingIsReturned"
+ },
+ {
+ "Id": "07MOy000007kY98MAE",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenInjectorWithBindingsThenBindingIsReturned",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_InjectorTest.givenInjectorWithBindingsThenBindingIsReturned"
+ },
+ {
+ "Id": "07MOy000007kY99MAE",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenInstanceNameThenGetException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "di_InjectorTest.givenInstanceNameThenGetException"
+ },
+ {
+ "Id": "07MOy000007kY9AMAU",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenInstanceThenGetThatInstance",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 20,
+ "FullName": "di_InjectorTest.givenInstanceThenGetThatInstance"
+ },
+ {
+ "Id": "07MOy000007kY9BMAU",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenListOfModulesBindThenGetCount",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_InjectorTest.givenListOfModulesBindThenGetCount"
+ },
+ {
+ "Id": "07MOy000007kY9CMAU",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenNoBindingsGetInstanceShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_InjectorTest.givenNoBindingsGetInstanceShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kY9DMAU",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenNullParamterInGetInstanceThenThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "di_InjectorTest.givenNullParamterInGetInstanceThenThrowException"
+ },
+ {
+ "Id": "07MOy000007kY9EMAU",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenNullSTypeParamterInGetInstanceThenThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "di_InjectorTest.givenNullSTypeParamterInGetInstanceThenThrowException"
+ },
+ {
+ "Id": "07MOy000007kY9FMAU",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "test",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 259,
+ "FullName": "di_InjectorTest.test"
+ },
+ {
+ "Id": "07MOy000007kY9GMAU",
+ "QueueItemId": "709Oy000006AA39IAG",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenDeveloperNameIsEmptyThenGetInstanceShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgiIAE",
+ "Name": "di_InjectorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "di_InjectorTest.whenDeveloperNameIsEmptyThenGetInstanceShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kYKPMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Domain_Constructor2Test",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 273,
+ "FullName": "ApplicationFactoryTest.Application_Domain_Constructor2Test"
+ },
+ {
+ "Id": "07MOy000007kYKQMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Domain_ConstructorTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "ApplicationFactoryTest.Application_Domain_ConstructorTest"
+ },
+ {
+ "Id": "07MOy000007kYKRMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Domain_MockDomainConstructor2Test",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 57,
+ "FullName": "ApplicationFactoryTest.Application_Domain_MockDomainConstructor2Test"
+ },
+ {
+ "Id": "07MOy000007kYKSMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Domain_MockDomainConstructorTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 60,
+ "FullName": "ApplicationFactoryTest.Application_Domain_MockDomainConstructorTest"
+ },
+ {
+ "Id": "07MOy000007kYKTMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Selector_HappyPathTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 119,
+ "FullName": "ApplicationFactoryTest.Application_Selector_HappyPathTest"
+ },
+ {
+ "Id": "07MOy000007kYKUMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Selector_PrioritizationTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "ApplicationFactoryTest.Application_Selector_PrioritizationTest"
+ },
+ {
+ "Id": "07MOy000007kYKVMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Selector_SelectByIdHelperTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 71,
+ "FullName": "ApplicationFactoryTest.Application_Selector_SelectByIdHelperTest"
+ },
+ {
+ "Id": "07MOy000007kYKWMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Selector_SelectByRelationshipTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "ApplicationFactoryTest.Application_Selector_SelectByRelationshipTest"
+ },
+ {
+ "Id": "07MOy000007kYKXMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Selector_SetMockTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 50,
+ "FullName": "ApplicationFactoryTest.Application_Selector_SetMockTest"
+ },
+ {
+ "Id": "07MOy000007kYKYMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Service_HappyPathTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 53,
+ "FullName": "ApplicationFactoryTest.Application_Service_HappyPathTest"
+ },
+ {
+ "Id": "07MOy000007kYKZMA2",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Service_MockServiceTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 65,
+ "FullName": "ApplicationFactoryTest.Application_Service_MockServiceTest"
+ },
+ {
+ "Id": "07MOy000007kYKaMAM",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_Service_MultiServiceTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "ApplicationFactoryTest.Application_Service_MultiServiceTest"
+ },
+ {
+ "Id": "07MOy000007kYKbMAM",
+ "QueueItemId": "709Oy000006AA3AIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "Application_UnitOfWork_HappyPathTest",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAlOIAU",
+ "Name": "ApplicationFactoryTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 121,
+ "FullName": "ApplicationFactoryTest.Application_UnitOfWork_HappyPathTest"
+ },
+ {
+ "Id": "07MOy000007kY7VMAU",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatAnswerOnlyForTheMethodStubbedWithAnswer",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 53,
+ "FullName": "fflib_AnswerTest.thatAnswerOnlyForTheMethodStubbedWithAnswer"
+ },
+ {
+ "Id": "07MOy000007kY7WMAU",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatAnswerOnlyForTheStubbedParameter",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_AnswerTest.thatAnswerOnlyForTheStubbedParameter"
+ },
+ {
+ "Id": "07MOy000007kY7XMAU",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatAnswerToDifferentVoidMethods",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_AnswerTest.thatAnswerToDifferentVoidMethods"
+ },
+ {
+ "Id": "07MOy000007kY7YMAU",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatAnswerToVoidAndNotVoidMethods",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_AnswerTest.thatAnswerToVoidAndNotVoidMethods"
+ },
+ {
+ "Id": "07MOy000007kY7ZMAU",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatAnswerToVoidMethod",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_AnswerTest.thatAnswerToVoidMethod"
+ },
+ {
+ "Id": "07MOy000007kY7aMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatAnswersWithException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_AnswerTest.thatAnswersWithException"
+ },
+ {
+ "Id": "07MOy000007kY7bMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatArgumentListEmptyForMethodWithNoArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_AnswerTest.thatArgumentListEmptyForMethodWithNoArgument"
+ },
+ {
+ "Id": "07MOy000007kY7cMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatExceptionIsThrownWhenAccessNegativeIndexArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_AnswerTest.thatExceptionIsThrownWhenAccessNegativeIndexArgument"
+ },
+ {
+ "Id": "07MOy000007kY7dMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatExceptionIsThrownWhenAccessOutOfIndexArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_AnswerTest.thatExceptionIsThrownWhenAccessOutOfIndexArgument"
+ },
+ {
+ "Id": "07MOy000007kY7eMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatMethodsParametersAreAccessible",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_AnswerTest.thatMethodsParametersAreAccessible"
+ },
+ {
+ "Id": "07MOy000007kY7fMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatMethodsParametersAreAccessibleWhenCalledWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_AnswerTest.thatMethodsParametersAreAccessibleWhenCalledWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kY7gMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatMultipleAnswersAreHandled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_AnswerTest.thatMultipleAnswersAreHandled"
+ },
+ {
+ "Id": "07MOy000007kY7hMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStoresMethodIntoInvocationOnMock",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_AnswerTest.thatStoresMethodIntoInvocationOnMock"
+ },
+ {
+ "Id": "07MOy000007kY7iMAE",
+ "QueueItemId": "709Oy000006AA3BIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStoresMockInstanceIntoInvocationOnMock",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5gyIAA",
+ "Name": "fflib_AnswerTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_AnswerTest.thatStoresMockInstanceIntoInvocationOnMock"
+ },
+ {
+ "Id": "07MOy000007kTxkMAE",
+ "QueueItemId": "709Oy000006AA3CIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenPlatformEventSubscriptionConsumerBlankExceptionThrown",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm1IAE",
+ "Name": "PlatformEventDistributorDIModuleTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 76,
+ "FullName": "PlatformEventDistributorDIModuleTest.whenPlatformEventSubscriptionConsumerBlankExceptionThrown"
+ },
+ {
+ "Id": "07MOy000007kTxlMAE",
+ "QueueItemId": "709Oy000006AA3CIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenPlatformEventSubscriptionCustomMetadataPresentVerifyForceDIBinding",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm1IAE",
+ "Name": "PlatformEventDistributorDIModuleTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 23,
+ "FullName": "PlatformEventDistributorDIModuleTest.whenPlatformEventSubscriptionCustomMetadataPresentVerifyForceDIBinding"
+ },
+ {
+ "Id": "07MOy000007kTxmMAE",
+ "QueueItemId": "709Oy000006AA3CIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenPlatformEventSubscriptionEventBusBlankExceptionThrown",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAm1IAE",
+ "Name": "PlatformEventDistributorDIModuleTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "PlatformEventDistributorDIModuleTest.whenPlatformEventSubscriptionEventBusBlankExceptionThrown"
+ },
+ {
+ "Id": "07MOy000007kYFZMA2",
+ "QueueItemId": "709Oy000006AA3DIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenBadBindingTypeThenGetModuleException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgkIAE",
+ "Name": "di_ModuleTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "di_ModuleTest.givenBadBindingTypeThenGetModuleException"
+ },
+ {
+ "Id": "07MOy000007kYFaMAM",
+ "QueueItemId": "709Oy000006AA3DIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenBindingInModuleWhenSetTypeThenGetModule",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgkIAE",
+ "Name": "di_ModuleTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "di_ModuleTest.givenBindingInModuleWhenSetTypeThenGetModule"
+ },
+ {
+ "Id": "07MOy000007kYFbMAM",
+ "QueueItemId": "709Oy000006AA3DIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenModuleWhenSettingValuesThenGet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgkIAE",
+ "Name": "di_ModuleTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "di_ModuleTest.givenModuleWhenSettingValuesThenGet"
+ },
+ {
+ "Id": "07MOy000007kT32MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithCombinedMatcher_ShouldPass",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 26,
+ "FullName": "fflib_SystemTest.assertEquals_WithCombinedMatcher_ShouldPass"
+ },
+ {
+ "Id": "07MOy000007kT33MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithCustomMessage_WithCombinedMatcher_ShouldPass",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SystemTest.assertEquals_WithCustomMessage_WithCombinedMatcher_ShouldPass"
+ },
+ {
+ "Id": "07MOy000007kT34MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithCustomMessage_WithMatch_ShouldPass",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_SystemTest.assertEquals_WithCustomMessage_WithMatch_ShouldPass"
+ },
+ {
+ "Id": "07MOy000007kT35MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithCustomMessage_WithMismatch_ShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_SystemTest.assertEquals_WithCustomMessage_WithMismatch_ShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kT36MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithCustomMessage_WithNoMatchers_ShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_SystemTest.assertEquals_WithCustomMessage_WithNoMatchers_ShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kT37MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithCustomMessage_WithTooManyMatchers_ShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_SystemTest.assertEquals_WithCustomMessage_WithTooManyMatchers_ShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kT38MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithMatch_ShouldPass",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_SystemTest.assertEquals_WithMatch_ShouldPass"
+ },
+ {
+ "Id": "07MOy000007kT39MAE",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithMismatch_ShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_SystemTest.assertEquals_WithMismatch_ShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kT3AMAU",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithNoMatchers_ShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 2,
+ "FullName": "fflib_SystemTest.assertEquals_WithNoMatchers_ShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kT3BMAU",
+ "QueueItemId": "709Oy000006AA3EIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "assertEquals_WithTooManyMatchers_ShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hYIAQ",
+ "Name": "fflib_SystemTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_SystemTest.assertEquals_WithTooManyMatchers_ShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kT84MAE",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatArgumentValueIsCaptured",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 76,
+ "FullName": "fflib_ArgumentCaptorTest.thatArgumentValueIsCaptured"
+ },
+ {
+ "Id": "07MOy000007kT85MAE",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatArgumentValueIsCapturedWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_ArgumentCaptorTest.thatArgumentValueIsCapturedWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT86MAE",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCanHandleMultipleCapturesInOneMethodCall",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_ArgumentCaptorTest.thatCanHandleMultipleCapturesInOneMethodCall"
+ },
+ {
+ "Id": "07MOy000007kT87MAE",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCanHandleMultipleCapturesInOneMethodCallWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ArgumentCaptorTest.thatCanHandleMultipleCapturesInOneMethodCallWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT88MAE",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCanPerformFurtherAssertionsOnCapturedArgumentValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ArgumentCaptorTest.thatCanPerformFurtherAssertionsOnCapturedArgumentValue"
+ },
+ {
+ "Id": "07MOy000007kT89MAE",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCanPerformFurtherAssertionsOnCapturedArgumentValueWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_ArgumentCaptorTest.thatCanPerformFurtherAssertionsOnCapturedArgumentValueWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8AMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureAllArguments",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureAllArguments"
+ },
+ {
+ "Id": "07MOy000007kT8BMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureAllArgumentsForTheVerifiedMethods",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureAllArgumentsForTheVerifiedMethods"
+ },
+ {
+ "Id": "07MOy000007kT8CMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureAllArgumentsForTheVerifiedMethodsWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureAllArgumentsForTheVerifiedMethodsWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8DMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureAllArgumentsFromMultipleMethods",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureAllArgumentsFromMultipleMethods"
+ },
+ {
+ "Id": "07MOy000007kT8EMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureAllArgumentsFromMultipleMethodsWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureAllArgumentsFromMultipleMethodsWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8FMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureAllArgumentsWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureAllArgumentsWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8GMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureAllArgumentswhenMethodIsCalledWithTheSameArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureAllArgumentswhenMethodIsCalledWithTheSameArgument"
+ },
+ {
+ "Id": "07MOy000007kT8HMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureArgumentFromRequestedParameter",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureArgumentFromRequestedParameter"
+ },
+ {
+ "Id": "07MOy000007kT8IMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureArgumentFromRequestedParameterWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureArgumentFromRequestedParameterWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8JMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureArgumentOnlyFromVerifiedMethod",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureArgumentOnlyFromVerifiedMethod"
+ },
+ {
+ "Id": "07MOy000007kT8KMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureArgumentOnlyFromVerifiedMethodWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureArgumentOnlyFromVerifiedMethodWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8LMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureLastArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureLastArgument"
+ },
+ {
+ "Id": "07MOy000007kT8MMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureLastArgumentWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureLastArgumentWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8NMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureOnlyMethodsThatMatchesWithOtherMatcherAsWell",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureOnlyMethodsThatMatchesWithOtherMatcherAsWell"
+ },
+ {
+ "Id": "07MOy000007kT8OMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCaptureOnlyMethodsThatMatchesWithOtherMatcherAsWellWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_ArgumentCaptorTest.thatCaptureOnlyMethodsThatMatchesWithOtherMatcherAsWellWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8PMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatDoesNotCaptureAnythingWhenCaptorIsWrappedInAMatcher",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ArgumentCaptorTest.thatDoesNotCaptureAnythingWhenCaptorIsWrappedInAMatcher"
+ },
+ {
+ "Id": "07MOy000007kT8QMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatDoesNotCaptureAnythingWhenCaptorIsWrappedInAMatcherWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ArgumentCaptorTest.thatDoesNotCaptureAnythingWhenCaptorIsWrappedInAMatcherWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kT8RMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatDoesNotCaptureIfNotVerified",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_ArgumentCaptorTest.thatDoesNotCaptureIfNotVerified"
+ },
+ {
+ "Id": "07MOy000007kT8SMAU",
+ "QueueItemId": "709Oy000006AA3FIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatDoesNotCaptureIfNotVerifiedWithInOrderVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h7IAA",
+ "Name": "fflib_ArgumentCaptorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ArgumentCaptorTest.thatDoesNotCaptureIfNotVerifiedWithInOrderVerification"
+ },
+ {
+ "Id": "07MOy000007kYM1MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "makeRelationship_GenericOverload_ReturnsObjectsWithRelationFieldSet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 293,
+ "FullName": "fflib_ApexMocksUtilsTest.makeRelationship_GenericOverload_ReturnsObjectsWithRelationFieldSet"
+ },
+ {
+ "Id": "07MOy000007kYM2MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "makeRelationship_GenericOverload_ThrowsErrorOnInvalidChildType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 75,
+ "FullName": "fflib_ApexMocksUtilsTest.makeRelationship_GenericOverload_ThrowsErrorOnInvalidChildType"
+ },
+ {
+ "Id": "07MOy000007kYM3MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "makeRelationship_GenericOverload_ThrowsErrorOnInvalidFieldName",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 73,
+ "FullName": "fflib_ApexMocksUtilsTest.makeRelationship_GenericOverload_ThrowsErrorOnInvalidFieldName"
+ },
+ {
+ "Id": "07MOy000007kYM4MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "makeRelationship_GenericOverload_ThrowsErrorOnInvalidParentType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 61,
+ "FullName": "fflib_ApexMocksUtilsTest.makeRelationship_GenericOverload_ThrowsErrorOnInvalidParentType"
+ },
+ {
+ "Id": "07MOy000007kYM5MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "makeRelationship_returnsObjectsWithRelationFieldSet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 23,
+ "FullName": "fflib_ApexMocksUtilsTest.makeRelationship_returnsObjectsWithRelationFieldSet"
+ },
+ {
+ "Id": "07MOy000007kYM6MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "setReadOnlyFields_CreatedByIdSetToCurrentUserId_IdFieldSetSuccessfully",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 17,
+ "FullName": "fflib_ApexMocksUtilsTest.setReadOnlyFields_CreatedByIdSetToCurrentUserId_IdFieldSetSuccessfully"
+ },
+ {
+ "Id": "07MOy000007kYM7MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "setReadOnlyFields_IsDeletedSetOnAccount_BooleanFieldSetSuccessfully",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksUtilsTest.setReadOnlyFields_IsDeletedSetOnAccount_BooleanFieldSetSuccessfully"
+ },
+ {
+ "Id": "07MOy000007kYM8MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "setReadOnlyFields_LastReferencedDateSetOnAccount_DateTimeFieldSetSuccessfully",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksUtilsTest.setReadOnlyFields_LastReferencedDateSetOnAccount_DateTimeFieldSetSuccessfully"
+ },
+ {
+ "Id": "07MOy000007kYM9MAM",
+ "QueueItemId": "709Oy000006AA3GIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "setReadOnlyFields_PolymorphicRelationJoin_FieldSetSuccessfully",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h5IAA",
+ "Name": "fflib_ApexMocksUtilsTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_ApexMocksUtilsTest.setReadOnlyFields_PolymorphicRelationJoin_FieldSetSuccessfully"
+ },
+ {
+ "Id": "07MOy000007kWQwMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "stubAndVerifyMethodCallsWithNoArguments",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 104,
+ "FullName": "fflib_ApexMocksTest.stubAndVerifyMethodCallsWithNoArguments"
+ },
+ {
+ "Id": "07MOy000007kWQxMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatExceptionIsthrownWhenReturnMultiPassEmptyList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_ApexMocksTest.thatExceptionIsthrownWhenReturnMultiPassEmptyList"
+ },
+ {
+ "Id": "07MOy000007kWQyMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatExceptionIsthrownWhenReturnMultiPassNullList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.thatExceptionIsthrownWhenReturnMultiPassNullList"
+ },
+ {
+ "Id": "07MOy000007kWQzMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatExceptionIsthrownWhenStubbingIsNotDone",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatExceptionIsthrownWhenStubbingIsNotDone"
+ },
+ {
+ "Id": "07MOy000007kWR0MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatExceptionIsthrownWhenThrowMultiPassEmptyList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.thatExceptionIsthrownWhenThrowMultiPassEmptyList"
+ },
+ {
+ "Id": "07MOy000007kWR1MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatExceptionIsthrownWhenThrowMultiPassNullList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.thatExceptionIsthrownWhenThrowMultiPassNullList"
+ },
+ {
+ "Id": "07MOy000007kWR2MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatMultipleInstancesCanBeMockedDependently",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApexMocksTest.thatMultipleInstancesCanBeMockedDependently"
+ },
+ {
+ "Id": "07MOy000007kWR3MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatMultipleInstancesCanBeMockedIndependently",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.thatMultipleInstancesCanBeMockedIndependently"
+ },
+ {
+ "Id": "07MOy000007kWR4MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatMultipleVoidMethodsThrowsMultipleExceptions",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_ApexMocksTest.thatMultipleVoidMethodsThrowsMultipleExceptions"
+ },
+ {
+ "Id": "07MOy000007kWR5MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatNullCanBeUsedAsExceptionvalue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatNullCanBeUsedAsExceptionvalue"
+ },
+ {
+ "Id": "07MOy000007kWR6MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatNullCanBeUsedAsReturnValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.thatNullCanBeUsedAsReturnValue"
+ },
+ {
+ "Id": "07MOy000007kWR7MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingCanBeChainedFirstValueThenException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_ApexMocksTest.thatStubbingCanBeChainedFirstValueThenException"
+ },
+ {
+ "Id": "07MOy000007kWR8MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleMethodsCanBeChainedFirstExceptionThenValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleMethodsCanBeChainedFirstExceptionThenValue"
+ },
+ {
+ "Id": "07MOy000007kWR9MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleMethodsCanBeChainedFirstValueThenException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleMethodsCanBeChainedFirstValueThenException"
+ },
+ {
+ "Id": "07MOy000007kWRAMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithMultiExceptions",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithMultiExceptions"
+ },
+ {
+ "Id": "07MOy000007kWRBMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithMultiValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithMultiValue"
+ },
+ {
+ "Id": "07MOy000007kWRCMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithSingleException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithSingleException"
+ },
+ {
+ "Id": "07MOy000007kWRDMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithSingleValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnMultiWithSingleValue"
+ },
+ {
+ "Id": "07MOy000007kWREMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnWithMultiExceptions",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnWithMultiExceptions"
+ },
+ {
+ "Id": "07MOy000007kWRFMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnWithMultiValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnWithMultiValues"
+ },
+ {
+ "Id": "07MOy000007kWRGMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnWithSingleException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnWithSingleException"
+ },
+ {
+ "Id": "07MOy000007kWRHMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenReturnWithSingleValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenReturnWithSingleValue"
+ },
+ {
+ "Id": "07MOy000007kWRIMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithMultiExceptions",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithMultiExceptions"
+ },
+ {
+ "Id": "07MOy000007kWRJMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithMultiValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithMultiValue"
+ },
+ {
+ "Id": "07MOy000007kWRKMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithSingleException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithSingleException"
+ },
+ {
+ "Id": "07MOy000007kWRLMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithSingleValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowMultiWithSingleValue"
+ },
+ {
+ "Id": "07MOy000007kWRMMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowWithMultiExceptions",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowWithMultiExceptions"
+ },
+ {
+ "Id": "07MOy000007kWRNMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowWithMultiValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowWithMultiValues"
+ },
+ {
+ "Id": "07MOy000007kWROMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowWithSingleException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowWithSingleException"
+ },
+ {
+ "Id": "07MOy000007kWRPMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMultipleTimesOverridePreviousThenThrowWithSingleValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMultipleTimesOverridePreviousThenThrowWithSingleValue"
+ },
+ {
+ "Id": "07MOy000007kWRQMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMutipleTimesVoidMethodThrowsMultipleExceptionsOverride",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMutipleTimesVoidMethodThrowsMultipleExceptionsOverride"
+ },
+ {
+ "Id": "07MOy000007kWRRMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingMutipleTimesVoidMethodThrowsMultipleExceptionsOverrideWithSingleException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingMutipleTimesVoidMethodThrowsMultipleExceptionsOverrideWithSingleException"
+ },
+ {
+ "Id": "07MOy000007kWRSMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingReturnsAndThrowsDifferentValuesAndExceptionsForDifferentCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_ApexMocksTest.thatStubbingReturnsAndThrowsDifferentValuesAndExceptionsForDifferentCalls"
+ },
+ {
+ "Id": "07MOy000007kWRTMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingReturnsDifferentValuesForDifferentCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingReturnsDifferentValuesForDifferentCalls"
+ },
+ {
+ "Id": "07MOy000007kWRUMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingReturnsDifferentValuesForDifferentCallsAndRepeatLastValuesForFurtherCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.thatStubbingReturnsDifferentValuesForDifferentCallsAndRepeatLastValuesForFurtherCalls"
+ },
+ {
+ "Id": "07MOy000007kWRVMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingThrowsAndReturnsDifferentExceptionsAndValuesForDifferentCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.thatStubbingThrowsAndReturnsDifferentExceptionsAndValuesForDifferentCalls"
+ },
+ {
+ "Id": "07MOy000007kWRWMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingThrowsDifferentExceptionsForDifferentCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatStubbingThrowsDifferentExceptionsForDifferentCalls"
+ },
+ {
+ "Id": "07MOy000007kWRXMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStubbingThrowsDifferentExceptionsForDifferentCallsAndRepeatLastExceptionForFurtherCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.thatStubbingThrowsDifferentExceptionsForDifferentCallsAndRepeatLastExceptionForFurtherCalls"
+ },
+ {
+ "Id": "07MOy000007kWRYMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatToStringReturnsSimpleStringValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "fflib_ApexMocksTest.thatToStringReturnsSimpleStringValue"
+ },
+ {
+ "Id": "07MOy000007kWRZMA2",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVoidMethodThrowsMultipleExceptions",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.thatVoidMethodThrowsMultipleExceptions"
+ },
+ {
+ "Id": "07MOy000007kWRaMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMethodCallWhenNoCallsBeenMadeForType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_ApexMocksTest.verifyMethodCallWhenNoCallsBeenMadeForType"
+ },
+ {
+ "Id": "07MOy000007kWRbMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMethodCallsWithSameNameButDifferentArgumentTypes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApexMocksTest.verifyMethodCallsWithSameNameButDifferentArgumentTypes"
+ },
+ {
+ "Id": "07MOy000007kWRcMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMethodNotCalled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_ApexMocksTest.verifyMethodNotCalled"
+ },
+ {
+ "Id": "07MOy000007kWRdMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMultipleMethodCallsWithDifferentSingleArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.verifyMultipleMethodCallsWithDifferentSingleArgument"
+ },
+ {
+ "Id": "07MOy000007kWReMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMultipleMethodCallsWithSameSingleArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.verifyMultipleMethodCallsWithSameSingleArgument"
+ },
+ {
+ "Id": "07MOy000007kWRfMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifySingleMethodCallWithMultipleArguments",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.verifySingleMethodCallWithMultipleArguments"
+ },
+ {
+ "Id": "07MOy000007kWRgMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifySingleMethodCallWithNoArguments",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.verifySingleMethodCallWithNoArguments"
+ },
+ {
+ "Id": "07MOy000007kWRhMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifySingleMethodCallWithSingleArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.verifySingleMethodCallWithSingleArgument"
+ },
+ {
+ "Id": "07MOy000007kWRiMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMockIsGeneratedCanStubVerify",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_ApexMocksTest.whenMockIsGeneratedCanStubVerify"
+ },
+ {
+ "Id": "07MOy000007kWRjMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMockIsGeneratedCanVerify",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenMockIsGeneratedCanVerify"
+ },
+ {
+ "Id": "07MOy000007kWRkMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenSetDoThrowWhenExceptionsValuesAreSet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenSetDoThrowWhenExceptionsValuesAreSet"
+ },
+ {
+ "Id": "07MOy000007kWRlMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubCallWithNoArgumentsShouldReturnStubbedValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenStubCallWithNoArgumentsShouldReturnStubbedValue"
+ },
+ {
+ "Id": "07MOy000007kWRmMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubCustomMatchersCanBeUsed",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.whenStubCustomMatchersCanBeUsed"
+ },
+ {
+ "Id": "07MOy000007kWRnMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubExceptionSameMethodWithMatchersAndNonMatchersShouldStubInOrder",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.whenStubExceptionSameMethodWithMatchersAndNonMatchersShouldStubInOrder"
+ },
+ {
+ "Id": "07MOy000007kWRoMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubExceptionTheExceptionShouldBeThrown",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_ApexMocksTest.whenStubExceptionTheExceptionShouldBeThrown"
+ },
+ {
+ "Id": "07MOy000007kWRpMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubExceptionWithMatchersShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.whenStubExceptionWithMatchersShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kWRqMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubMultipleCallsWithMatchersShouldReturnExpectedValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.whenStubMultipleCallsWithMatchersShouldReturnExpectedValues"
+ },
+ {
+ "Id": "07MOy000007kWRrMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubMultipleCallsWithMultipleArgumentShouldReturnStubbedValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_ApexMocksTest.whenStubMultipleCallsWithMultipleArgumentShouldReturnStubbedValues"
+ },
+ {
+ "Id": "07MOy000007kWRsMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubMultipleCallsWithSingleArgumentShouldReturnStubbedValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.whenStubMultipleCallsWithSingleArgumentShouldReturnStubbedValues"
+ },
+ {
+ "Id": "07MOy000007kWRtMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubMultipleVoidMethodsWithExceptionsThenExceptionsShouldBeThrown",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.whenStubMultipleVoidMethodsWithExceptionsThenExceptionsShouldBeThrown"
+ },
+ {
+ "Id": "07MOy000007kWRuMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubNullConcreteArgValueCorrectValueIsReturned",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenStubNullConcreteArgValueCorrectValueIsReturned"
+ },
+ {
+ "Id": "07MOy000007kWRvMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubSameCallWithDifferentArgumentValueShouldReturnLastStubbedValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.whenStubSameCallWithDifferentArgumentValueShouldReturnLastStubbedValue"
+ },
+ {
+ "Id": "07MOy000007kWRwMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubSameMethodWithMatchersAndNonMatchersShouldStubInOrder",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.whenStubSameMethodWithMatchersAndNonMatchersShouldStubInOrder"
+ },
+ {
+ "Id": "07MOy000007kWRxMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubSingleCallWithNullReturnValueItShouldReturnNull",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenStubSingleCallWithNullReturnValueItShouldReturnNull"
+ },
+ {
+ "Id": "07MOy000007kWRyMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubSingleCallWithSingleArgumentShouldReturnStubbedValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenStubSingleCallWithSingleArgumentShouldReturnStubbedValue"
+ },
+ {
+ "Id": "07MOy000007kWRzMAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubVoidMethodWithExceptionAndCallMethodTwiceThenExceptionShouldBeThrownTwice",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.whenStubVoidMethodWithExceptionAndCallMethodTwiceThenExceptionShouldBeThrownTwice"
+ },
+ {
+ "Id": "07MOy000007kWS0MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubVoidMethodWithExceptionThenExceptionShouldBeThrown",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_ApexMocksTest.whenStubVoidMethodWithExceptionThenExceptionShouldBeThrown"
+ },
+ {
+ "Id": "07MOy000007kWS1MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenStubWithMatcherAndNonMatcherArgumentsShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenStubWithMatcherAndNonMatcherArgumentsShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kWS2MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyCustomMatchersCanBeUsed",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_ApexMocksTest.whenVerifyCustomMatchersCanBeUsed"
+ },
+ {
+ "Id": "07MOy000007kWS3MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyMethodNeverCalledMatchersAreReset",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_ApexMocksTest.whenVerifyMethodNeverCalledMatchersAreReset"
+ },
+ {
+ "Id": "07MOy000007kWS4MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyMultipleCallsWithMatchersShouldReturnCorrectMethodCallCounts",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_ApexMocksTest.whenVerifyMultipleCallsWithMatchersShouldReturnCorrectMethodCallCounts"
+ },
+ {
+ "Id": "07MOy000007kWS5MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyWithCombinedMatchersShouldReturnCorrectMethodCallCounts",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_ApexMocksTest.whenVerifyWithCombinedMatchersShouldReturnCorrectMethodCallCounts"
+ },
+ {
+ "Id": "07MOy000007kWS6MAM",
+ "QueueItemId": "709Oy000006AA3HIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyWithMatcherAndNonMatcherArgumentsShouldThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h3IAA",
+ "Name": "fflib_ApexMocksTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_ApexMocksTest.whenVerifyWithMatcherAndNonMatcherArgumentsShouldThrowException"
+ },
+ {
+ "Id": "07MOy000007kEp1MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatBetweenThrownExceptionIfCalledLessThanAtLeastNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 42,
+ "FullName": "fflib_AnyOrderTest.thatBetweenThrownExceptionIfCalledLessThanAtLeastNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEp2MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatBetweenThrownExceptionIfCalledLessThanAtLeastNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 18,
+ "FullName": "fflib_AnyOrderTest.thatBetweenThrownExceptionIfCalledLessThanAtLeastNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEp3MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatBetweenThrownExceptionIfCalledMoreThanAtMostNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_AnyOrderTest.thatBetweenThrownExceptionIfCalledMoreThanAtMostNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEp4MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatBetweenThrownExceptionIfCalledMoreThanAtMostNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.thatBetweenThrownExceptionIfCalledMoreThanAtMostNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEp5MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatCustomMessageIsAdded",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.thatCustomMessageIsAdded"
+ },
+ {
+ "Id": "07MOy000007kEp6MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledLessThanAtLeastNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledLessThanAtLeastNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEp7MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledLessThanAtLeastNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledLessThanAtLeastNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEp8MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledLessThanAtLeastOnce",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledLessThanAtLeastOnce"
+ },
+ {
+ "Id": "07MOy000007kEp9MAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledLessThanAtLeastOnceNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledLessThanAtLeastOnceNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEpAMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledLessThanAtLeastOnceNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledLessThanAtLeastOnceNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpBMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledLessThanAtLeastOnceWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledLessThanAtLeastOnceWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpCMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledMoreThanAtMostNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledMoreThanAtMostNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEpDMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatThrownExceptionIfCalledMoreThanAtMostNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatThrownExceptionIfCalledMoreThanAtMostNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpEMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEpFMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastNumberOfTimesWhenIsCalledMoreTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastNumberOfTimesWhenIsCalledMoreTimes"
+ },
+ {
+ "Id": "07MOy000007kEpGMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastNumberOfTimesWhenIsCalledMoreTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastNumberOfTimesWhenIsCalledMoreTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpHMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpIMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnce",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnce"
+ },
+ {
+ "Id": "07MOy000007kEpJMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnceNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnceNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEpKMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnceNumberOfTimesWhenIsCalledMoreTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnceNumberOfTimesWhenIsCalledMoreTimes"
+ },
+ {
+ "Id": "07MOy000007kEpLMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnceNumberOfTimesWhenIsCalledMoreTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnceNumberOfTimesWhenIsCalledMoreTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpMMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnceNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnceNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpNMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnceWhenIsCalledMoreTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnceWhenIsCalledMoreTimes"
+ },
+ {
+ "Id": "07MOy000007kEpOMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnceWhenIsCalledMoreTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnceWhenIsCalledMoreTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpPMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtLeastOnceWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtLeastOnceWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpQMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtMostNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtMostNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEpRMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtMostNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtMostNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpSMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtMostSameNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtMostSameNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEpTMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesAtMostSameNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesAtMostSameNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpUMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesBetweenNumberOfTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesBetweenNumberOfTimes"
+ },
+ {
+ "Id": "07MOy000007kEpVMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifiesBetweenNumberOfTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifiesBetweenNumberOfTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpWMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNeverFailsWhenCalledMoreTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.thatVerifyNeverFailsWhenCalledMoreTimes"
+ },
+ {
+ "Id": "07MOy000007kEpXMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNeverFailsWhenCalledMoreTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.thatVerifyNeverFailsWhenCalledMoreTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpYMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesMethodFailsWhenCalledLessTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.thatVerifyTimesMethodFailsWhenCalledLessTimes"
+ },
+ {
+ "Id": "07MOy000007kEpZMAU",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesMethodFailsWhenCalledLessTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifyTimesMethodFailsWhenCalledLessTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpaMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesMethodFailsWhenCalledMoreTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_AnyOrderTest.thatVerifyTimesMethodFailsWhenCalledMoreTimes"
+ },
+ {
+ "Id": "07MOy000007kEpbMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesMethodFailsWhenCalledMoreTimesWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.thatVerifyTimesMethodFailsWhenCalledMoreTimesWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpcMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMethodCallWhenNoCallsBeenMadeForType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_AnyOrderTest.verifyMethodCallWhenNoCallsBeenMadeForType"
+ },
+ {
+ "Id": "07MOy000007kEpdMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMethodNotCalled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.verifyMethodNotCalled"
+ },
+ {
+ "Id": "07MOy000007kEpeMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyMultipleMethodCallsWithSameSingleArgument",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.verifyMultipleMethodCallsWithSameSingleArgument"
+ },
+ {
+ "Id": "07MOy000007kEpfMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyNeverMethodHasBeenNotCalledWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.verifyNeverMethodHasBeenNotCalledWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpgMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyNeverMethodHasNotBeenCalled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.verifyNeverMethodHasNotBeenCalled"
+ },
+ {
+ "Id": "07MOy000007kEphMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifySingleMethodCallWithMultipleArguments",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.verifySingleMethodCallWithMultipleArguments"
+ },
+ {
+ "Id": "07MOy000007kEpiMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyTimesMethodHasBeenCalled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_AnyOrderTest.verifyTimesMethodHasBeenCalled"
+ },
+ {
+ "Id": "07MOy000007kEpjMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyTimesMethodHasBeenCalledWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_AnyOrderTest.verifyTimesMethodHasBeenCalledWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kEpkMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyCustomMatchersCanBeUsed",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.whenVerifyCustomMatchersCanBeUsed"
+ },
+ {
+ "Id": "07MOy000007kEplMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyMethodNeverCalledMatchersAreReset",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_AnyOrderTest.whenVerifyMethodNeverCalledMatchersAreReset"
+ },
+ {
+ "Id": "07MOy000007kEpmMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyMultipleCallsWithMatchersShouldReturnCorrectMethodCallCounts",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_AnyOrderTest.whenVerifyMultipleCallsWithMatchersShouldReturnCorrectMethodCallCounts"
+ },
+ {
+ "Id": "07MOy000007kEpnMAE",
+ "QueueItemId": "709Oy000006AA3JIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenVerifyWithCombinedMatchersShouldReturnCorrectMethodCallCounts",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h0IAA",
+ "Name": "fflib_AnyOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 17,
+ "FullName": "fflib_AnyOrderTest.whenVerifyWithCombinedMatchersShouldReturnCorrectMethodCallCounts"
+ },
+ {
+ "Id": "07MOy000007kTxhMAE",
+ "QueueItemId": "709Oy000006AA3KIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenBindingWrapperThenExtractAndValidate",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgVIAU",
+ "Name": "di_BindingConfigWrapperTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "di_BindingConfigWrapperTest.givenBindingWrapperThenExtractAndValidate"
+ },
+ {
+ "Id": "07MOy000007kTxiMAE",
+ "QueueItemId": "709Oy000006AA3KIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenBindingWrapperWithBindingNameExpectDeveloperNameEqualsBindingName",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgVIAU",
+ "Name": "di_BindingConfigWrapperTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 6,
+ "FullName": "di_BindingConfigWrapperTest.givenBindingWrapperWithBindingNameExpectDeveloperNameEqualsBindingName"
+ },
+ {
+ "Id": "07MOy000007kTxjMAE",
+ "QueueItemId": "709Oy000006AA3KIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenBindingWrapperWithMDTThenExtractAndValidate",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgVIAU",
+ "Name": "di_BindingConfigWrapperTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "di_BindingConfigWrapperTest.givenBindingWrapperWithMDTThenExtractAndValidate"
+ },
+ {
+ "Id": "07MOy000007kTXfMAM",
+ "QueueItemId": "709Oy000006AA3LIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenBooleansWhenGetParameterThenGetValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgXIAU",
+ "Name": "di_BindingParamTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 26,
+ "FullName": "di_BindingParamTest.givenBooleansWhenGetParameterThenGetValues"
+ },
+ {
+ "Id": "07MOy000007kTXgMAM",
+ "QueueItemId": "709Oy000006AA3LIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenDateTimesWhenGetParameterThenGetValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgXIAU",
+ "Name": "di_BindingParamTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "di_BindingParamTest.givenDateTimesWhenGetParameterThenGetValues"
+ },
+ {
+ "Id": "07MOy000007kTXhMAM",
+ "QueueItemId": "709Oy000006AA3LIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenDatesWhenGetParameterThenGetValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgXIAU",
+ "Name": "di_BindingParamTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "di_BindingParamTest.givenDatesWhenGetParameterThenGetValues"
+ },
+ {
+ "Id": "07MOy000007kTXiMAM",
+ "QueueItemId": "709Oy000006AA3LIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenDecimalsWhenGetParameterThenGetValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgXIAU",
+ "Name": "di_BindingParamTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "di_BindingParamTest.givenDecimalsWhenGetParameterThenGetValues"
+ },
+ {
+ "Id": "07MOy000007kTXjMAM",
+ "QueueItemId": "709Oy000006AA3LIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenNullInputWhenGetParameterThenGetNullValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgXIAU",
+ "Name": "di_BindingParamTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "di_BindingParamTest.givenNullInputWhenGetParameterThenGetNullValue"
+ },
+ {
+ "Id": "07MOy000007kTXkMAM",
+ "QueueItemId": "709Oy000006AA3LIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenStringsWhenGetParameterThenGetValues",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgXIAU",
+ "Name": "di_BindingParamTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "di_BindingParamTest.givenStringsWhenGetParameterThenGetValues"
+ },
+ {
+ "Id": "07MOy000007kTXlMAM",
+ "QueueItemId": "709Oy000006AA3LIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenUnknownKeyWhenGetParameterThenGetNullValue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgXIAU",
+ "Name": "di_BindingParamTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "di_BindingParamTest.givenUnknownKeyWhenGetParameterThenGetNullValue"
+ },
+ {
+ "Id": "07MOy000007kStMMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexBindingWhenGetInstanceThenInstance",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 22,
+ "FullName": "di_BindingTest.givenApexBindingWhenGetInstanceThenInstance"
+ },
+ {
+ "Id": "07MOy000007kStNMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexBindingWhenGetInstanceWithParamThenInstanceWithParam",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "di_BindingTest.givenApexBindingWhenGetInstanceWithParamThenInstanceWithParam"
+ },
+ {
+ "Id": "07MOy000007kStOMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexBindingWhenGetNewInstanceThenNewInstance",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "di_BindingTest.givenApexBindingWhenGetNewInstanceThenNewInstance"
+ },
+ {
+ "Id": "07MOy000007kStPMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexBindingsWithDeveloperNamesWhenSortThenReturnSortedBindingsList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "di_BindingTest.givenApexBindingsWithDeveloperNamesWhenSortThenReturnSortedBindingsList"
+ },
+ {
+ "Id": "07MOy000007kStQMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexBindingsWithSequenceAndWithoutObjectWhenSortThenReturnSortedBindingsList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "di_BindingTest.givenApexBindingsWithSequenceAndWithoutObjectWhenSortThenReturnSortedBindingsList"
+ },
+ {
+ "Id": "07MOy000007kStRMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexBindingsWithSequenceWhenSortThenReturnSortedBindingsList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "di_BindingTest.givenApexBindingsWithSequenceWhenSortThenReturnSortedBindingsList"
+ },
+ {
+ "Id": "07MOy000007kStSMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenApexBindingsWithSobjectTypesWhenSortThenReturnSortedBindingsList",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "di_BindingTest.givenApexBindingsWithSobjectTypesWhenSortThenReturnSortedBindingsList"
+ },
+ {
+ "Id": "07MOy000007kStTMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "givenIncorrectApexBindingWhenGetInstanceThenThrowException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "di_BindingTest.givenIncorrectApexBindingWhenGetInstanceThenThrowException"
+ },
+ {
+ "Id": "07MOy000007kStUMAU",
+ "QueueItemId": "709Oy000006AA3MIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "shouldConvertBindingToStringWhenObjectIsEmptyAndSequenceIsProvided",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002qAgYIAU",
+ "Name": "di_BindingTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "di_BindingTest.shouldConvertBindingToStringWhenObjectIsEmptyAndSequenceIsProvided"
+ },
+ {
+ "Id": "07MOy000007kYDxMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "allOfWith2ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_MatchTest.allOfWith2ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYDyMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "allOfWith3ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.allOfWith3ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYDzMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "allOfWith4ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.allOfWith4ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYE0MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "allOfWithEmptyArgsThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.allOfWithEmptyArgsThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYE1MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "allOfWithListArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.allOfWithListArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYE2MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "allOfWithNoArgsThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.allOfWithNoArgsThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYE3MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "allOfWithoutRegisteringInnerMatchersThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.allOfWithoutRegisteringInnerMatchersThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYE4MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyBooleanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyBooleanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYE5MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyDateRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyDateRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYE6MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyDatetimeRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyDatetimeRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYE7MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyDecimalRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyDecimalRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYE8MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyDoubleRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyDoubleRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYE9MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyFieldSetRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyFieldSetRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEAMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyIdRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyIdRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEBMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyIntegerRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.anyIntegerRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYECMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyListRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyListRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEDMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyLongRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.anyLongRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEEMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyObjectRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyObjectRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEFMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyOfWith2ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.anyOfWith2ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEGMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyOfWith3ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyOfWith3ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEHMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyOfWith4ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.anyOfWith4ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEIMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyOfWithListArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyOfWithListArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEJMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anySObjectFieldRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anySObjectFieldRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEKMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anySObjectRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.anySObjectRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYELMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anySObjectTypeRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anySObjectTypeRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEMMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "anyStringRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.anyStringRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYENMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "dateAfterRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.dateAfterRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEOMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "dateBeforeRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.dateBeforeRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEPMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "dateBetweenRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.dateBetweenRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEQMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "datetimeAfterRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_MatchTest.datetimeAfterRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYERMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "datetimeBeforeRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.datetimeBeforeRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYESMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "datetimeBetweenRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.datetimeBetweenRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYETMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "decimalBetweenRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.decimalBetweenRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEUMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "decimalLessThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.decimalLessThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEVMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "decimalMoreThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.decimalMoreThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEWMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "doubleBetweenRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.doubleBetweenRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEXMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "doubleLessThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.doubleLessThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEYMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "doubleMoreThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.doubleMoreThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEZMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqBooleanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.eqBooleanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEaMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqDateRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.eqDateRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEbMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqDatetimeRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.eqDatetimeRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEcMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqDecimalRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.eqDecimalRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEdMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqDoubleRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.eqDoubleRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEeMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqIdRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.eqIdRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEfMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqIntegerRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.eqIntegerRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEgMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqListRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.eqListRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEhMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqLongRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.eqLongRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEiMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.eqRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEjMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqSObjectFieldRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 69,
+ "FullName": "fflib_MatchTest.eqSObjectFieldRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEkMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqSObjectTypeRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 19,
+ "FullName": "fflib_MatchTest.eqSObjectTypeRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYElMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "eqStringRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.eqStringRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEmMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "fieldSetEquivalentToRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 382,
+ "FullName": "fflib_MatchTest.fieldSetEquivalentToRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEnMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "fieldSetEquivalentWithNullFieldSetThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.fieldSetEquivalentWithNullFieldSetThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYEoMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "integerBetweenRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.integerBetweenRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEpMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "integerLessThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.integerLessThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEqMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "integerMoreThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 7,
+ "FullName": "fflib_MatchTest.integerMoreThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYErMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "isNotNullRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_MatchTest.isNotNullRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEsMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "isNotRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.isNotRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEtMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "isNullRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.isNullRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEuMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "listContainsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.listContainsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEvMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "listIsEmptyRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.listIsEmptyRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEwMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "longBetweenRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.longBetweenRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYExMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "longLessThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.longLessThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEyMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "longMoreThanRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.longMoreThanRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYEzMAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "noneOfWith2ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.noneOfWith2ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF0MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "noneOfWith3ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.noneOfWith3ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF1MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "noneOfWith4ArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.noneOfWith4ArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF2MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "noneOfWithListArgsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.noneOfWithListArgsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF3MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "refEqRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.refEqRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF4MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "sObjectOfTypeRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 20,
+ "FullName": "fflib_MatchTest.sObjectOfTypeRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF5MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "sObjectWithIdRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.sObjectWithIdRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF6MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "sObjectWithNameRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.sObjectWithNameRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF7MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "sObjectWithRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 20,
+ "FullName": "fflib_MatchTest.sObjectWithRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF8MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "sObjectsWithMatchInOrderRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 28,
+ "FullName": "fflib_MatchTest.sObjectsWithMatchInOrderRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYF9MAM",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "sObjectsWithRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 22,
+ "FullName": "fflib_MatchTest.sObjectsWithRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYFAMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "stringContainsRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.stringContainsRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYFBMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "stringEndsWithRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_MatchTest.stringEndsWithRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYFCMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "stringIsBlankRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 5,
+ "FullName": "fflib_MatchTest.stringIsBlankRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYFDMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "stringIsNotBlankRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.stringIsNotBlankRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYFEMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "stringMatchesRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.stringMatchesRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYFFMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "stringStartsWithRegistersCorrectMatcherType",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.stringStartsWithRegistersCorrectMatcherType"
+ },
+ {
+ "Id": "07MOy000007kYFGMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithDifferentSizeArgValuesAndMatchersThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithDifferentSizeArgValuesAndMatchersThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYFHMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithManyMatchesReturnsTrue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithManyMatchesReturnsTrue"
+ },
+ {
+ "Id": "07MOy000007kYFIMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithManyMismatchesReturnsFalse",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithManyMismatchesReturnsFalse"
+ },
+ {
+ "Id": "07MOy000007kYFJMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithMatchesAndMismatchesReturnsFalse",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithMatchesAndMismatchesReturnsFalse"
+ },
+ {
+ "Id": "07MOy000007kYFKMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithNullMatchersThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithNullMatchersThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYFLMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithNullMethodArgsArgValuesThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithNullMethodArgsArgValuesThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYFMMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithNullMethodArgsThrowsException",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithNullMethodArgsThrowsException"
+ },
+ {
+ "Id": "07MOy000007kYFNMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithOneMatchReturnsTrue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithOneMatchReturnsTrue"
+ },
+ {
+ "Id": "07MOy000007kYFOMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesAllArgsWithOneMismatchReturnsFalse",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 4,
+ "FullName": "fflib_MatchTest.whenMatchesAllArgsWithOneMismatchReturnsFalse"
+ },
+ {
+ "Id": "07MOy000007kYFPMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesWithOneMatcherRegistersMatcher",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.whenMatchesWithOneMatcherRegistersMatcher"
+ },
+ {
+ "Id": "07MOy000007kYFQMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesWithOneMatcherReturnsNull",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.whenMatchesWithOneMatcherReturnsNull"
+ },
+ {
+ "Id": "07MOy000007kYFRMA2",
+ "QueueItemId": "709Oy000006AA3NIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "whenMatchesWithOneMatcherSetsMatchingToTrue",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hHIAQ",
+ "Name": "fflib_MatchTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 3,
+ "FullName": "fflib_MatchTest.whenMatchesWithOneMatcherSetsMatchingToTrue"
+ },
+ {
+ "Id": "07MOy000007kYSTMA2",
+ "QueueItemId": "709Oy000006AA3OIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "canInstantiateMultipleInterfaceInheritor",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hEIAQ",
+ "Name": "fflib_InheritorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 34,
+ "FullName": "fflib_InheritorTest.canInstantiateMultipleInterfaceInheritor"
+ },
+ {
+ "Id": "07MOy000007kYSUMA2",
+ "QueueItemId": "709Oy000006AA3OIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "canStubMultipleInterfaceInheritor",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hEIAQ",
+ "Name": "fflib_InheritorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 19,
+ "FullName": "fflib_InheritorTest.canStubMultipleInterfaceInheritor"
+ },
+ {
+ "Id": "07MOy000007kDIbMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatMixedVerificationDoNotInterfierWithOtherImplementationChecking",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 72,
+ "FullName": "fflib_InOrderTest.thatMixedVerificationDoNotInterfierWithOtherImplementationChecking"
+ },
+ {
+ "Id": "07MOy000007kDIcMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStrictVerificationCanBeEnforced",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_InOrderTest.thatStrictVerificationCanBeEnforced"
+ },
+ {
+ "Id": "07MOy000007kDIdMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStrictVerificationCanBeEnforcedWithOldNotation",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 17,
+ "FullName": "fflib_InOrderTest.thatStrictVerificationCanBeEnforcedWithOldNotation"
+ },
+ {
+ "Id": "07MOy000007kDIeMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStrictVerificationCanBeEnforcedWithOldNotationUsingDefaultTimesOne",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_InOrderTest.thatStrictVerificationCanBeEnforcedWithOldNotationUsingDefaultTimesOne"
+ },
+ {
+ "Id": "07MOy000007kDIfMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatStrictVerificationCanBePerformed",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_InOrderTest.thatStrictVerificationCanBePerformed"
+ },
+ {
+ "Id": "07MOy000007kDIgMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatTimesOneIsTheDefaultVerification",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatTimesOneIsTheDefaultVerification"
+ },
+ {
+ "Id": "07MOy000007kDIhMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastConsumeAllTheInstances",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastConsumeAllTheInstances"
+ },
+ {
+ "Id": "07MOy000007kDIiMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastConsumeAllTheInstancesForOnlyTheMethodVerified",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastConsumeAllTheInstancesForOnlyTheMethodVerified"
+ },
+ {
+ "Id": "07MOy000007kDIjMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastConsumesAllTheInstances2",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastConsumesAllTheInstances2"
+ },
+ {
+ "Id": "07MOy000007kDIkMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastOnce",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastOnce"
+ },
+ {
+ "Id": "07MOy000007kDIlMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastOnceConsumesAllTheInstances",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastOnceConsumesAllTheInstances"
+ },
+ {
+ "Id": "07MOy000007kDImMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastOnceConsumesInstancesUntilLastMethodVerified",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastOnceConsumesInstancesUntilLastMethodVerified"
+ },
+ {
+ "Id": "07MOy000007kDInMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastOnceThrowsErrorIfCalledLessTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastOnceThrowsErrorIfCalledLessTimes"
+ },
+ {
+ "Id": "07MOy000007kDIoMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastPassWithMoreCallsThenAsserted",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastPassWithMoreCallsThenAsserted"
+ },
+ {
+ "Id": "07MOy000007kDIpMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastPassWithSameCallsOfAssertion",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastPassWithSameCallsOfAssertion"
+ },
+ {
+ "Id": "07MOy000007kDIqMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtLeastThrowsErrorIfCalledLessTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyAtLeastThrowsErrorIfCalledLessTimes"
+ },
+ {
+ "Id": "07MOy000007kDIrMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyAtMostThrowsExceptionBecauseNotImplemented",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatVerifyAtMostThrowsExceptionBecauseNotImplemented"
+ },
+ {
+ "Id": "07MOy000007kDIsMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyBetweenThrowsExceptionBecauseNotImplemented",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyBetweenThrowsExceptionBecauseNotImplemented"
+ },
+ {
+ "Id": "07MOy000007kDItMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderAllTheMethodsCalled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderAllTheMethodsCalled"
+ },
+ {
+ "Id": "07MOy000007kDIuMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCallMethodWithMatches",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 26,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCallMethodWithMatches"
+ },
+ {
+ "Id": "07MOy000007kDIvMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCallMethodWithMatchesFailsIfVerifyACallAlreadyInTheMatcher",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCallMethodWithMatchesFailsIfVerifyACallAlreadyInTheMatcher"
+ },
+ {
+ "Id": "07MOy000007kDIwMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCallMethodWithMultipleMatches",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCallMethodWithMultipleMatches"
+ },
+ {
+ "Id": "07MOy000007kDIxMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCallMethodWithMultipleMatchesMixed",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCallMethodWithMultipleMatchesMixed"
+ },
+ {
+ "Id": "07MOy000007kDIyMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCallMethodWithMultipleMatchesMixedFailWhenMatcherHaveAlreadyVerifiedMethod",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 16,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCallMethodWithMultipleMatchesMixedFailWhenMatcherHaveAlreadyVerifiedMethod"
+ },
+ {
+ "Id": "07MOy000007kDIzMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCanHandleMixedInOrderInstance",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCanHandleMixedInOrderInstance"
+ },
+ {
+ "Id": "07MOy000007kDJ0MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCanHandleMultipleMethodsCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCanHandleMultipleMethodsCalls"
+ },
+ {
+ "Id": "07MOy000007kDJ1MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCanHandleMultipleMethodsCallsAndNotFailsIfVerifyCountIsGreaterThenExpected",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCanHandleMultipleMethodsCallsAndNotFailsIfVerifyCountIsGreaterThenExpected"
+ },
+ {
+ "Id": "07MOy000007kDJ2MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCanHandleMultipleMethodsCallsButFailsIfVerifyCountIsLessThenExpected",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCanHandleMultipleMethodsCallsButFailsIfVerifyCountIsLessThenExpected"
+ },
+ {
+ "Id": "07MOy000007kDJ3MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCanHandleMultipleMocks",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCanHandleMultipleMocks"
+ },
+ {
+ "Id": "07MOy000007kDJ4MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderCanSkipMethodsCalledUntilFindTheOneThatNeedsVerify",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderCanSkipMethodsCalledUntilFindTheOneThatNeedsVerify"
+ },
+ {
+ "Id": "07MOy000007kDJ5MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderDifferentMethodsCalledWithSameArguments",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderDifferentMethodsCalledWithSameArguments"
+ },
+ {
+ "Id": "07MOy000007kDJ6MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderDifferentMethodsCalledWithSameArgumentsDoubleCallFail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderDifferentMethodsCalledWithSameArgumentsDoubleCallFail"
+ },
+ {
+ "Id": "07MOy000007kDJ7MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderDifferentMethodsCalledWithSameArgumentsOrderFail",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderDifferentMethodsCalledWithSameArgumentsOrderFail"
+ },
+ {
+ "Id": "07MOy000007kDJ8MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderThrownExceptionIfVerifyMockInstanceNotInTheSet",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderThrownExceptionIfVerifyMockInstanceNotInTheSet"
+ },
+ {
+ "Id": "07MOy000007kDJ9MAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyInOrderThrownExceptionWithCustomMessage",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_InOrderTest.thatVerifyInOrderThrownExceptionWithCustomMessage"
+ },
+ {
+ "Id": "07MOy000007kDJAMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNever",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyNever"
+ },
+ {
+ "Id": "07MOy000007kYHBMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNeverFailsWhenCalled",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatVerifyNeverFailsWhenCalled"
+ },
+ {
+ "Id": "07MOy000007kYHCMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNeverFailsWhenCalledWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatVerifyNeverFailsWhenCalledWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kYHDMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNeverWithMatchers",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatVerifyNeverWithMatchers"
+ },
+ {
+ "Id": "07MOy000007kYHEMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNoInteractionsFails",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_InOrderTest.thatVerifyNoInteractionsFails"
+ },
+ {
+ "Id": "07MOy000007kYHFMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNoInteractionsPass",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 8,
+ "FullName": "fflib_InOrderTest.thatVerifyNoInteractionsPass"
+ },
+ {
+ "Id": "07MOy000007kYHGMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNoMoreInteractionsFails",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_InOrderTest.thatVerifyNoMoreInteractionsFails"
+ },
+ {
+ "Id": "07MOy000007kYHHMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNoMoreInteractionsFailsWhenNoInteracionOccurs",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_InOrderTest.thatVerifyNoMoreInteractionsFailsWhenNoInteracionOccurs"
+ },
+ {
+ "Id": "07MOy000007kYHIMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNoMoreInteractionsFailsWhenOnLyOneMethodLeft",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_InOrderTest.thatVerifyNoMoreInteractionsFailsWhenOnLyOneMethodLeft"
+ },
+ {
+ "Id": "07MOy000007kYHJMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyNoMoreInteractionsPass",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyNoMoreInteractionsPass"
+ },
+ {
+ "Id": "07MOy000007kYHKMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyThrowsExceptionWhenCallsIsInvochedFromStandardMock",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 9,
+ "FullName": "fflib_InOrderTest.thatVerifyThrowsExceptionWhenCallsIsInvochedFromStandardMock"
+ },
+ {
+ "Id": "07MOy000007kYHLMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimes",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 10,
+ "FullName": "fflib_InOrderTest.thatVerifyTimes"
+ },
+ {
+ "Id": "07MOy000007kYHMMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls"
+ },
+ {
+ "Id": "07MOy000007kYHNMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls2",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_InOrderTest.thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls2"
+ },
+ {
+ "Id": "07MOy000007kYHOMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls3",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_InOrderTest.thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls3"
+ },
+ {
+ "Id": "07MOy000007kYHPMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls4",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_InOrderTest.thatVerifyTimesPassWhenAnotherMethodIsCalledBetweenMethodsCalls4"
+ },
+ {
+ "Id": "07MOy000007kYHQMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesThrowsExceptionIfCalledLessTimesThanExpected",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatVerifyTimesThrowsExceptionIfCalledLessTimesThanExpected"
+ },
+ {
+ "Id": "07MOy000007kYHRMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesThrowsExceptionIfCalledMoreTimesThanExpected",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 14,
+ "FullName": "fflib_InOrderTest.thatVerifyTimesThrowsExceptionIfCalledMoreTimesThanExpected"
+ },
+ {
+ "Id": "07MOy000007kYHSMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatVerifyTimesThrowsExceptionWhenAnotherMethodIsCalledBetweenMethodsCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 15,
+ "FullName": "fflib_InOrderTest.thatVerifyTimesThrowsExceptionWhenAnotherMethodIsCalledBetweenMethodsCalls"
+ },
+ {
+ "Id": "07MOy000007kYHTMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatWithOldNotation",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatWithOldNotation"
+ },
+ {
+ "Id": "07MOy000007kYHUMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatWithOldNotationPassWhenAnotherMethodIsCalledBetweenMethodsCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatWithOldNotationPassWhenAnotherMethodIsCalledBetweenMethodsCalls"
+ },
+ {
+ "Id": "07MOy000007kYHVMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatWithOldNotationThrowsExceptionIfCalledLessTimesThanExpected",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.thatWithOldNotationThrowsExceptionIfCalledLessTimesThanExpected"
+ },
+ {
+ "Id": "07MOy000007kYHWMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatWithOldNotationThrowsExceptionIfCalledMoreTimesThanExpected",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.thatWithOldNotationThrowsExceptionIfCalledMoreTimesThanExpected"
+ },
+ {
+ "Id": "07MOy000007kYHXMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "thatWithOldNotationThrowsExceptionWhenAnotherMethodIsCalledBetweenMethodsCalls",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.thatWithOldNotationThrowsExceptionWhenAnotherMethodIsCalledBetweenMethodsCalls"
+ },
+ {
+ "Id": "07MOy000007kYHYMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyAtLeastAndCapture",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 13,
+ "FullName": "fflib_InOrderTest.verifyAtLeastAndCapture"
+ },
+ {
+ "Id": "07MOy000007kYHZMA2",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyCallsAndCapture",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 12,
+ "FullName": "fflib_InOrderTest.verifyCallsAndCapture"
+ },
+ {
+ "Id": "07MOy000007kYHaMAM",
+ "QueueItemId": "709Oy000006AA3QIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "verifyTimesAndCaptor",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5hCIAQ",
+ "Name": "fflib_InOrderTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 11,
+ "FullName": "fflib_InOrderTest.verifyTimesAndCaptor"
+ },
+ {
+ "Id": "07MOy000007kNJBMA2",
+ "QueueItemId": "709Oy000006AA3RIAW",
+ "StackTrace": null,
+ "Message": null,
+ "AsyncApexJobId": "707Oy00000Tp86TIAR",
+ "MethodName": "itShouldGenerateValidIDs",
+ "Outcome": "Pass",
+ "ApexClass": {
+ "Id": "01pOy000002q5h9IAA",
+ "Name": "fflib_IDGeneratorTest",
+ "NamespacePrefix": null
+ },
+ "RunTime": 19,
+ "FullName": "fflib_IDGeneratorTest.itShouldGenerateValidIDs"
+ }
+ ]
+ }
+ }
diff --git a/__tests__/fixtures/empty/apex-json.json b/__tests__/fixtures/empty/apex-json.json
new file mode 100644
index 0000000..50e123d
--- /dev/null
+++ b/__tests__/fixtures/empty/apex-json.json
@@ -0,0 +1,25 @@
+{
+ "result": {
+ "summary": {
+ "failRate": "0%",
+ "failing": 0,
+ "hostname": "https://scratch.my.salesforce.com",
+ "orgId": "0000000000000",
+ "outcome": "Passed",
+ "passRate": "0%",
+ "passing": 0,
+ "skipped": 0,
+ "testRunId": "000000000000",
+ "testStartTime": "2024-07-11T15:21:00.000Z",
+ "testsRan": 0,
+ "userId": "000000000000000",
+ "username": "test@example.com",
+ "commandTime": "357 ms",
+ "testExecutionTime": "1000 ms",
+ "testTotalTime": "1000 ms",
+ "orgWideCoverage": "0%",
+ "testRunCoverage": "0%"
+ },
+ "tests": []
+ }
+}
diff --git a/package-lock.json b/package-lock.json
index e78c890..12178c3 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -23,7 +23,7 @@
"@types/adm-zip": "^0.5.5",
"@types/github-slugger": "^1.3.0",
"@types/jest": "^29.5.12",
- "@types/node": "^20.14.8",
+ "@types/node": "^20.14.10",
"@types/picomatch": "^2.3.3",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.14.1",
@@ -1654,9 +1654,9 @@
}
},
"node_modules/@types/node": {
- "version": "20.14.8",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.8.tgz",
- "integrity": "sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==",
+ "version": "20.14.10",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.10.tgz",
+ "integrity": "sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==",
"dependencies": {
"undici-types": "~5.26.4"
}
diff --git a/package.json b/package.json
index dbe60ad..1d2b2c5 100644
--- a/package.json
+++ b/package.json
@@ -47,7 +47,7 @@
"@types/adm-zip": "^0.5.5",
"@types/github-slugger": "^1.3.0",
"@types/jest": "^29.5.12",
- "@types/node": "^20.14.8",
+ "@types/node": "^20.14.10",
"@types/picomatch": "^2.3.3",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.14.1",
diff --git a/src/main.ts b/src/main.ts
index 31eda0d..45fd95d 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -21,6 +21,7 @@ import {SwiftXunitParser} from './parsers/swift-xunit/swift-xunit-parser'
import {normalizeDirPath, normalizeFilePath} from './utils/path-utils'
import {getCheckRunContext} from './utils/github-utils'
+import {ApexJsonParser} from './parsers/apex-json/apex-json-parsers'
async function main(): Promise {
try {
@@ -243,6 +244,8 @@ class TestReporter {
return new RspecJsonParser(options)
case 'swift-xunit':
return new SwiftXunitParser(options)
+ case 'apex-json':
+ return new ApexJsonParser(options)
default:
throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`)
}
diff --git a/src/parsers/apex-json/apex-json-parsers.ts b/src/parsers/apex-json/apex-json-parsers.ts
new file mode 100644
index 0000000..8ec2949
--- /dev/null
+++ b/src/parsers/apex-json/apex-json-parsers.ts
@@ -0,0 +1,10 @@
+import {ParseOptions, TestParser} from '../../test-parser'
+import {TestRunResult} from '../../test-results'
+
+export class ApexJsonParser implements TestParser {
+ constructor(readonly options: ParseOptions) {}
+
+ async parse(path: string, content: string): Promise {
+ throw new Error('Method not implemented.')
+ }
+}
diff --git a/src/parsers/apex-json/apex-json-types.ts b/src/parsers/apex-json/apex-json-types.ts
new file mode 100644
index 0000000..2c05932
--- /dev/null
+++ b/src/parsers/apex-json/apex-json-types.ts
@@ -0,0 +1,92 @@
+export interface RootObject {
+ result: Result
+}
+
+export interface Result {
+ summary: SuiteSummary
+ tests: Test[]
+ coverage: SuiteCoverage
+}
+
+export interface SuiteCoverage {
+ coverage?: Coverage[]
+ records: ApexRecord[]
+ summary: SuiteCoverageSummary
+}
+
+export interface SuiteCoverageSummary {
+ totalLines: number
+ coveredLines: number
+ orgWideCoverage: string
+ testRunCoverage: string
+}
+
+export interface ApexRecord {
+ ApexTestClass: ApexTestClass
+ Coverage: RecordCoverage
+ TestMethodName: string
+ NumLinesCovered: number
+ ApexClassOrTrigger: ApexTestClass
+ NumLinesUncovered: number
+}
+
+export interface RecordCoverage {
+ coveredLines: number[]
+ uncoveredLines: number[]
+}
+
+export interface ApexTestClass {
+ Id: string
+ Name: string
+}
+
+export interface Coverage {
+ id: string
+ name: string
+ totalLines: number
+ lines: Lines
+ totalCovered: number
+ coveredPercent: number
+}
+
+export type Lines = Record
+
+export interface Test {
+ Id: string
+ QueueItemId: string
+ StackTrace: null
+ Message: null
+ AsyncApexJobId: string
+ MethodName: string
+ Outcome: string
+ ApexClass: ApexClass
+ RunTime: number
+ FullName: string
+}
+
+export interface ApexClass {
+ Id: string
+ Name: string
+ NamespacePrefix: string
+}
+
+export interface SuiteSummary {
+ failRate: string
+ failing: number
+ hostname: string
+ orgId: string
+ outcome: string
+ passRate: string
+ passing: number
+ skipped: number
+ testRunId: string
+ testStartTime: string
+ testsRan: number
+ userId: string
+ username: string
+ commandTime: string
+ testExecutionTime: string
+ testTotalTime: string
+ orgWideCoverage: string
+ testRunCoverage: string
+}