• Meenakshi1212
  • NEWBIE
  • 0 Points
  • Member since 2013

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

Hi All,

 

I ma new to salesforce so i don't know how to write test class.

 

can you please tell em how to write test class for below apex class

 

public class AHAccountWrapper{
  public AHAccountWrapper(Boolean radioButton, Account account){
    this.radioButton = radioButton;
    this.account = account;
  }
  public Boolean radioButton{get;set;}
  public Account account{get;set;}
}