createTextFormatter( 'fr' ); $this->assertSame( 'fr', $formatter->getLangCode() ); } public function testFormatBitrate() { $formatter = $this->createTextFormatter( 'en' ); $mv = ( new MessageValue( 'test' ) )->bitrateParams( 100, 200 ); $result = $formatter->format( $mv ); $this->assertSame( 'test 100 bps 200 bps', $result ); } public function testFormatList() { $formatter = $this->createTextFormatter( 'en' ); $mv = ( new MessageValue( 'test' ) )->commaListParams( [ 'a', new ScalarParam( ParamType::BITRATE, 100 ), ] ); $result = $formatter->format( $mv ); $this->assertSame( 'test a, 100 bps $2', $result ); } public function testFormatMessage() { $formatter = $this->createTextFormatter( 'en' ); $mv = ( new MessageValue( 'test' ) ) ->params( new MessageValue( 'test2', [ 'a', 'b' ] ) ) ->commaListParams( [ 'x', new ScalarParam( ParamType::BITRATE, 100 ), new MessageValue( 'test3', [ 'c', new MessageValue( 'test4', [ 'd', 'e' ] ) ] ) ] ); $result = $formatter->format( $mv ); $this->assertSame( 'test test2 a b x, 100 bps, test3 c test4 d e', $result ); } } class FakeMessage extends Message { public function fetchMessage() { return "{$this->getKey()} $1 $2"; } }