Example #1
0
 public function testLDUserCountry()
 {
     $builder = new LDUserBuilder("*****@*****.**");
     $user = $builder->country("US")->build();
     $this->assertEquals("US", $user->getCountry());
     $json = $user->toJSON();
     $this->assertEquals("US", $json['country']);
 }