function checkDomainWithMaxLengthName()
 {
     $Domain = $this->Registry->NewDomainInstance();
     $Domain->Name = 'eppabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefgh';
     $Resp = $this->Module->DomainCanBeRegistered($Domain);
     $this->assertTrue($Resp->Code == RFC3730_RESULT_CODE::OK && $Resp->Result == false, "Check Domain with Maximum Length Domain Name (Domain Not Available)");
 }