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
amateur1amateur1 

test case help


i have wriiten a query how i can give this value in test case

 

ISRList = [SELECT id,name,Date__c,Item__c,Warehouse__c,Qty_Returned__c
FROM Item_Supplier_Return__c WHERE CREATEDDATE=LAST_MONTH];

Rajesh SriramuluRajesh Sriramulu

Hi

 

Insert the Item_Supplier_Return__c by giving the values for fields which are in query and also for createddate.

 

u can use.

 

date currentDate = Date.today();
integer str;
str=currentDate.month();
system.debug('str'+str);

 

it will returns 6.

if u want previous month means currentDate.month()-1;

 

Regards,

Rajesh.

amateur1amateur1

i am unable to over write the created date 

 

 

Rajesh SriramuluRajesh Sriramulu

Hi

 

Could u post ur class and test class.

 

Regards,

Rajesh.

 

 

 

Andy BoettcherAndy Boettcher

You will not be able to test your class if you use the "LAST_MONTH" variable because you cannot write to that field.  For data imports, Salesforce support can open up these fields for you, but it's not sustainable for deployments.

 

What you can do in your class:

 

if(test.isRunningTest()) {

 

ISRList = [SELECT id,name,Date__c,Item__c,Warehouse__c,Qty_Returned__c
FROM Item_Supplier_Return__c WHERE CREATEDDATE=TODAY];

 

} else {

 

ISRList = [SELECT id,name,Date__c,Item__c,Warehouse__c,Qty_Returned__c
FROM Item_Supplier_Return__c WHERE CREATEDDATE=LAST_MONTH];

 

}