From e6068da47c1bef5517c9e5fdc8c726766867ad4e Mon Sep 17 00:00:00 2001 From: buli <137736985@qq.com> Date: 星期五, 14 七月 2023 15:10:02 +0800 Subject: [PATCH] Merge branch 'master' into LEXUpgrade2023-Deloitte --- force-app/main/default/classes/Batch_FixAttachmentToFilesTest.cls | 37 +++++++++++++++++++------------------ 1 files changed, 19 insertions(+), 18 deletions(-) diff --git a/force-app/main/default/classes/Batch_FixAttachmentToFilesTest.cls b/force-app/main/default/classes/Batch_FixAttachmentToFilesTest.cls index ce9a300..938de55 100644 --- a/force-app/main/default/classes/Batch_FixAttachmentToFilesTest.cls +++ b/force-app/main/default/classes/Batch_FixAttachmentToFilesTest.cls @@ -1,10 +1,9 @@ @isTest(SeeAllData=true) private class Batch_FixAttachmentToFilesTest { - - @isTest(SeeAllData=true) + @isTest(SeeAllData=true) static void testInit() { String rectCo = Schema.SObjectType.Account.getRecordTypeInfosByDeveloperName().get('Agency').getRecordTypeId(); - Account accountItem1 = new Account(Name='Testaccount001',RecordTypeId = rectCo); + Account accountItem1 = new Account(Name = 'Testaccount001', RecordTypeId = rectCo); insert accountItem1; Consumable_order__c consOrder = new Consumable_order__c(); @@ -17,26 +16,28 @@ consOrder.Dealer_Info__c = accountItem1.Id; consOrder.Delivery_detail_count__c = 5; insert consOrder; - + List<Attachment> attachList = new List<Attachment>(); Attachment attach = new Attachment(); - attach.Name='A-65224941-20200923--1.docx'; - Blob bodyBlob= Blob.valueOf('Unit Test Attachment Body'); + attach.Name = 'A-65224941-20200923--1.docx'; + Blob bodyBlob = Blob.valueOf('Unit Test Attachment Body'); attach.body = bodyBlob; attach.ParentId = consOrder.Id; attachList.add(attach); insert attachList; - + Set<String> Id = new Set<String>(); String objectType; Datetime creStartDate; Datetime creEndDate; - - List<Attachment> attachmentList = [Select Id, Name, OwnerId, ParentId, Parent.Name, Parent.Type, Body, CreatedDate, CreatedById - From Attachment - Where Id =:attachList[0].Id - Order by CreatedDate ASC - Limit 1]; + + List<Attachment> attachmentList = [ + SELECT Id, Name, OwnerId, ParentId, Parent.Name, Parent.Type, Body, CreatedDate, CreatedById + FROM Attachment + WHERE Id = :attachList[0].Id + ORDER BY CreatedDate ASC + LIMIT 1 + ]; for (Attachment att : attachmentList) { Id.add(att.ParentId); objectType = att.Parent.Name; @@ -44,8 +45,8 @@ creEndDate = att.CreatedDate.addDays(1); } System.Test.startTest(); - Database.executeBatch(new Batch_FixAttachmentToFiles(objectType,creStartDate,creEndDate),1); - Database.executeBatch(new Batch_FixAttachmentToFiles(Id),1); - System.Test.stopTest(); - } -} \ No newline at end of file + Database.executeBatch(new Batch_FixAttachmentToFiles(objectType, creStartDate, creEndDate), 1); + Database.executeBatch(new Batch_FixAttachmentToFiles(Id), 1); + System.Test.stopTest(); + } +} -- Gitblit v1.9.1