cdd8e4e99a114bda8d0049b6a4f344966c02ff32
[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 }
13 ?>