Your IP : 216.73.216.95


Current Path : /var/test/www/alh/system/storage/vendor/braintree/braintree_php/tests/unit/
Upload File :
Current File : /var/test/www/alh/system/storage/vendor/braintree/braintree_php/tests/unit/SanityTest.php

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

class Braintree_SanityTest extends PHPUnit_Framework_TestCase
{
    function testCodeFiles_allOmitPHPCloseTag()
    {
        $codeFiles = explode("\n", shell_exec("find ./lib -name \*.php"));
        foreach ($codeFiles as $codeFile) {
            if ($codeFile == "") continue;
            $code = file_get_contents($codeFile);
            $this->assertNotContains("?>", $code, "$codeFile should not contain a PHP close tag");
        }
    }
}