PHP Classes

File: phpcf-src/test/original/namespaces.php

Recommend this page to a friend!
  Classes of Alex Krash   PHP Code formatter   phpcf-src/test/original/namespaces.php   Download  
File: phpcf-src/test/original/namespaces.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: PHP Code formatter
Reformat PHP code according to standard options
Author: By
Last change:
Date: 10 years ago
Size: 380 bytes
 

Contents

Class file image Download
<?php
namespace Billing\Pmdb;

require_once
__DIR__ . '/../../../../test.helper.php';

use \
Badoo_Billing_TestCase;

class
FlowTest extends Badoo_Billing_TestCase
{
    public function
test_getTableName()
    {
       
$func = function() use ($a) {
            echo
'Hello world!';
        };
       
$this->assertEquals(BILLING_DB_PMDB . '.flow', Flow::getTableName());
    }
}