• FedeM
  • NEWBIE
  • 25 Points
  • Member since 2012

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 3
    Replies

I'm using windows 7 (SP1)

Java 6 u 27

and Force IDE 25.0

 

when I run the program, the menu displayed is the one shown in this picture:

 

http://i.imgur.com/SJJfX.jpg

with several options within the menu missing. Any idea why this could be happening?

  • October 03, 2012
  • Like
  • 0

Got a couple of questions about running tests for a single class in Spring 13 release.

 

1) When runnning a single test class, how do we see the debug log?

2) When runnning a single test class, how do we see the colour coded code coverage?

 

Overall atm I am not impressed (to put it lightly) with the changes in the test area....

 

Thanks

Tony

I'm using windows 7 (SP1)

Java 6 u 27

and Force IDE 25.0

 

when I run the program, the menu displayed is the one shown in this picture:

 

http://i.imgur.com/SJJfX.jpg

with several options within the menu missing. Any idea why this could be happening?

  • October 03, 2012
  • Like
  • 0
The only error I am getting on the below is that it says "File only saved locally, not to server" in the Warnings section, and of course it is not showing up in the ui.
 
I am sure this is something simple, but I have not found it yet.  Any help would be greatly appreciated.
 
Thanks,
 
 
Code:
trigger SiteLeaseEndDate on Site_Lease_Contract__c (after update) {
 private Site_Lease_Contract__c[] newSiteLeaseEndDate = Trigger.new;
 Double Months = newSiteLeaseEndDate[0].Lease_Term_In_Months__c;
 Double y = Months;
 Integer x = y.intvalue();
 newSiteLeaseEndDate[0].End_Date_2__c = newSiteLeaseEndDate[0].Start_Date__c.addMonths(x);
}

 
  • December 10, 2008
  • Like
  • 0