JpnForPhp\Tests\Converter\ConverterTest::testConversionToJapaneseNumeralWithDigit PHP Метод

testConversionToJapaneseNumeralWithDigit() публичный Метод

    public function testConversionToJapaneseNumeralWithDigit()
    {
        $result = Converter::toJapaneseNumeral(2);
        $this->assertEquals('二', $result);
    }
ConverterTest