Your IP : 216.73.216.95


Current Path : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/
Upload File :
Current File : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/TransactionTest.php

<?php
require_once realpath(dirname(__FILE__)) . '/../TestHelper.php';

class Braintree_TransactionTest extends PHPUnit_Framework_TestCase
{
    function testGet_givesErrorIfInvalidProperty()
    {
        $t = Braintree_Transaction::factory(array(
            'creditCard' => array('expirationMonth' => '05', 'expirationYear' => '2010', 'bin' => '510510', 'last4' => '5100'),
            'customer' => array(),
            'billing' => array(),
            'descriptor' => array(),
            'shipping' => array(),
            'subscription' => array('billingPeriodStartDate' => '1983-07-12'),
            'statusHistory' => array()
        ));
        $this->setExpectedException('PHPUnit_Framework_Error', 'Undefined property on Braintree_Transaction: foo');
        $t->foo;
    }

	function testCloneTransaction_RaisesErrorOnInvalidProperty()
	{
        $this->setExpectedException('InvalidArgumentException');
		Braintree_Transaction::cloneTransaction('an id', array('amount' => '123.45', 'invalidProperty' => 'foo'));
	}

	function testErrorsWhenFindWithBlankString()
	{
        $this->setExpectedException('InvalidArgumentException');
        Braintree_Transaction::find('');
	}

	function testErrorsWhenFindWithWhitespaceString()
	{
        $this->setExpectedException('InvalidArgumentException');
        Braintree_Transaction::find('\t');
	}

    function testInitializationWithoutArguments()
    {
        $transaction = Braintree_Transaction::factory(array());

        $this->assertTrue($transaction instanceof Braintree_Transaction);
    }
}