コード例 #1
0
ファイル: PropalTest.php プロジェクト: nrjacker4/crm-php
    /**
     * testPropalDelete
     * 
     * @param	int		$id		Id of proposal
     * @return	void
     * 
     * @depends	testPropalOther
     * The depends says test is run only if previous is ok
     */
    public function testPropalDelete($id)
    {
    	global $conf,$user,$langs,$db;
		$conf=$this->savconf;
		$user=$this->savuser;
		$langs=$this->savlangs;
		$db=$this->savdb;

		$localobject=new Propal($this->savdb);
    	$result=$localobject->fetch($id);
		$result=$localobject->delete($user);

		print __METHOD__." id=".$id." result=".$result."\n";
    	$this->assertLessThan($result, 0);
    	return $result;
    }