c37256b146505b4c066ada8e816741a1f0918845
[pengine.git] / unittests / commsend.php
1 <?php
2 require_once("../lib/lib.php");
3
4 $mn = new netCom();
5 $mn->go();
6
7 $array["asdf"] = "message";
8 $array["other"] = "moogie";
9 for($i = 0; $i < 10; $i++) {
10         $array["bl"] = $i;
11         $mn->sendMessage($array);
12         sleep(1);
13 }
14 ?>