liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@isTest
private class SI_SearchSetProductControllerTest {
    
    @isTest static void test_method_one() {
        // Implement test code
        Product_Set__c psl = new Product_Set__c();
        psl.name = 'Test1';
        psl.Product_Set_CD__c = 'Test123456';
        psl.Quote_Select_Info__c = '123';
        insert psl;
        SI_SearchSetProductController SIsspc = new SI_SearchSetProductController(null);
        SIsspc.init();
        SIsspc.serContact();
        SIsspc.SelectDone();
 
    }
    
    @isTest static void test_method_two() {
        // Implement test code
    }
    
}