buli
2023-07-14 e6068da47c1bef5517c9e5fdc8c726766867ad4e
force-app/main/default/classes/LexConsumableAccountControllerTest.cls
@@ -11,21 +11,23 @@
    static testMethod void testMethod1() {
        User thisUser = [SELECT Id FROM User WHERE Id = :UserInfo.getUserId()];
        System.runAs(thisUser) {
            List<Account> accList = new List<Account>();
            // 取引先
            account1.Name = 'test1医院';
            account1.RecordTypeId = '01210000000QemG';
            //   account1.Is_Active__c = '草案中';
            insert account1;
            accList.add(account1);
            account2.Name = 'test2医院';
            account2.RecordTypeId = '01210000000QemG';
            //   account2.Is_Active__c = '有効';
            insert account2;
            accList.add(account2);
            account3.Name = 'test3医院';
            account3.RecordTypeId = '01210000000QemG';
            //   account3.Is_Active__c = '申请中';
            insert account3;
            accList.add(account3);
            insert accList;
            consumable.Name = 'test1经销商';
            consumable.RecordTypeId = '01210000000Qem1';
@@ -37,11 +39,7 @@
            insert contact1;
            // ユーザー
            Profile p = [
                SELECT Id
                FROM Profile
                WHERE Name = '901_经销商社区普通权限'
            ];
            Profile p = [SELECT Id FROM Profile WHERE Name = '901_经销商社区普通权限'];
            user.ProfileId = p.Id;
            user.ContactId = contact1.Id;
            user.FirstName = 'ユーザー';
@@ -118,11 +116,7 @@
            insert contact1;
            // ユーザー
            Profile p = [
                SELECT Id
                FROM Profile
                WHERE Name = '901_经销商社区普通权限'
            ];
            Profile p = [SELECT Id FROM Profile WHERE Name = '901_经销商社区普通权限'];
            user.ProfileId = p.Id;
            user.ContactId = contact1.Id;
            user.FirstName = 'ユーザー';