function testLargeMessage()
 {
     $options = array("debug" => true, "consumer" => "socket");
     $client = new Client("testsecret", $options);
     $big_property = "";
     for ($i = 0; $i < 10000; $i++) {
         $big_property .= "a";
     }
     $this->assertTrue($client->track(array("userId" => "some-user", "event" => "Super Large PHP Event", "properties" => array("big_property" => $big_property))));
     $client->__destruct();
 }