-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholdIndexNumTest.cls
63 lines (45 loc) · 1.89 KB
/
oldIndexNumTest.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@isTest
public class oldIndexNumTest{
/** Defining the public records that would be used for the test Class **/
Public Static Address__c addressTest;
public Static Profile sysadminProfile;
/** Defining the first user that be used for testing this Class **/
public static User userSysadmin
{
get{
if (userSysadmin == null )
{
sysadminProfile = [Select Id, Name From Profile where name = 'System Administrator' limit 1];
userSysadmin = new user (Username = '[email protected]', FirstName = 'First', LastName ='Last', alias = 'sysadmin',
email='[email protected]', communityNickname='test1', TimeZoneSidKey='Australia/Perth',
LocaleSidKey='en_US', EmailEncodingKey='ISO-8859-1', ProfileId=sysadminProfile.Id ,
LanguageLocaleKey='en_US');
insert userSysadmin;
}
return userSysadmin;
}
set;
}
/** Creating the records that would be used in this test class **/
// @future
public static void createTestData(){
/*
Card__c c = new Card__c();
c.name = 'Test Card';
insert c;
// inserting a address record
addressTest = new Address__c();
addressTest.card__c = c.id;
insert addressTest;
*/
}
public static testmethod void testPDFAttacher(){
/** Starting the Test **/
test.startTest();
/** Instantiating the rest of the records by changing the Context in order to avoid the Mixed DML Erroe **/
system.runAs(userSysadmin){
createTestData();
}
test.stopTest();
}
}