JBZoo\PHPUnit\FormatterTest::testDependenceChanges PHP Method

testDependenceChanges() public method

    public function testDependenceChanges()
    {
        $val1 = val('usd')->changeRule('usd', array('format_positive' => '%v%s'));
        $val2 = val('usd');
        is('0.00$', $val1->text());
        is('$0.00', $val2->text());
    }