function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
farah sheriffarah sherif 

How to add an asset to a certain account in apex?

How to add an asset to a certain account in apex?

@isTest

private class AssetTriggerTest{
    @isTest static void testclass(){
     
        Account acc = new Account();
        acc.Name = 'farah test';
        
        
        insert acc;
    }
    
}
Daniel Probert 10Daniel Probert 10
try {
ID accountid = [SELECT ID, Name FROM Account WHERE Name =:'farah test' LIMIT 1].ID;
system.assertequals(accountid, acc.id);
} catch (Exception e){
system.debug('error account not found ' + + e.getMessage());
}