Phactory\Sql\InflectorTest::testAddException PHP Method

testAddException() public method

public testAddException ( $singular, $plural )
    public function testAddException($singular, $plural)
    {
        $this->assertNotEquals(Inflector::pluralize($singular), $plural);
        Inflector::addException($singular, $plural);
        $this->assertEquals(Inflector::pluralize($singular), $plural);
    }