芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pay/vendor/wixel/gump/tests/ConstructorTest.php
assertEquals('en', self::getPrivateField($gump, 'lang')); } public function testItSetsLanguagePropertyWhenSet() { $gump = new GUMP('es'); $this->assertEquals('es', self::getPrivateField($gump, 'lang')); } public function testItThrowsExceptionWhenLanguageFileDoesntExist() { $this->helpersMock->shouldReceive('file_exists') ->once() ->andReturnFalse(); $this->expectException(Exception::class); $this->expectExceptionMessage("'es' language is not supported."); $gump = new GUMP('es'); } }