pay_helperTest.php 588 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 16/6/15
  6. * Time: 下午3:12
  7. */
  8. class pay_helperTest extends PHPUnit_Framework_TestCase
  9. {
  10. public function testAdd()
  11. {
  12. $mobiles = array();
  13. // array_push($mobiles,array('139111269867' => '江海苗C'));
  14. // array_push($mobiles,array('139111269868' => '江海苗A'));
  15. // array_push($mobiles,array('139111269869' => '江海苗B'));
  16. $mobiles['139111269867'] = '江海苗C';
  17. $mobiles['139111269868'] = '江海苗C';
  18. $mobiles['139111269869'] = '江海苗C';
  19. }
  20. }