1
2
3
4
5
6
7
8
9
10
11
12
13
14
@isTest
private class LexAWSServicePIPLDaoTest {
    @isTest
    static void tesMethod1(){ 
        LexAWSServicePIPLDao.searchContactInit('');
        LexAWSServicePIPLDao.getNoPIContact('','');
        LexAWSServicePIPLDao.getNoPIContact('Test','');
        LexAWSServicePIPLDao.searchContactInitNoAccountId();
        LexAWSServicePIPLDao.searchContactWithAccountId('',new List<String>());
        LexAWSServicePIPLDao.searchContactNoWithAccountId(new List<String>());
        LexAWSServicePIPLDao.searchContactNoPI('Test');
        LexAWSServicePIPLDao.searchContactByAWSIds(new List<String>());
    }
}