X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fframework%2Fbootstrap%2Fclass_FrameworkBootstrapTest.php;h=7b900fd296ba12733146f4437dc15a1e9b7d4e7a;hb=ef7a7e55c59c9e887e6bb09c8c02b8126309f716;hp=8dd7cfebbe7ff34d5fe99c234d27342367dca7c5;hpb=e5863bd0360aedc7d127fb568013ea5e912efd14;p=core.git diff --git a/tests/framework/bootstrap/class_FrameworkBootstrapTest.php b/tests/framework/bootstrap/class_FrameworkBootstrapTest.php index 8dd7cfeb..7b900fd2 100644 --- a/tests/framework/bootstrap/class_FrameworkBootstrapTest.php +++ b/tests/framework/bootstrap/class_FrameworkBootstrapTest.php @@ -77,86 +77,6 @@ class FrameworkBootstrapTest extends TestCase { //* NOISY-DEBUG: */ printf('[%s:%d]: EXIT!' . PHP_EOL, __METHOD__, __LINE__); } - /** - * Tests setting a NULL default timezone - */ - public function testSettingNullDefaultTimezone () { - // Will throw this exception - $this->expectException(NullPointerException::class); - - // Test it - FrameworkBootstrap::setDefaultTimezone(NULL); - } - - /** - * Tests setting a boolean default timezone - */ - public function testSettingBooleanDefaultTimezone () { - // Will throw this exception - $this->expectException(InvalidArgumentException::class); - - // Test it - FrameworkBootstrap::setDefaultTimezone(FALSE); - } - - /** - * Tests setting a decimal default timezone - */ - public function testSettingDecimalDefaultTimezone () { - // Will throw this exception - $this->expectException(InvalidArgumentException::class); - - // Test it - FrameworkBootstrap::setDefaultTimezone(12345); - } - - /** - * Tests setting a float default timezone - */ - public function testSettingFloatDefaultTimezone () { - // Will throw this exception - $this->expectException(InvalidArgumentException::class); - - // Test it - FrameworkBootstrap::setDefaultTimezone(123.45); - } - - /** - * Tests setting an array default timezone - */ - public function testSettingArrayDefaultTimezone () { - // Will throw this exception - $this->expectException(InvalidArgumentException::class); - - // Test it - FrameworkBootstrap::setDefaultTimezone(array()); - } - - /** - * Tests setting an object default timezone - */ - public function testSettingObjectDefaultTimezone () { - // Will throw this exception - $this->expectException(InvalidArgumentException::class); - - // Test it - FrameworkBootstrap::setDefaultTimezone($this); - } - - /** - * Tests setting a resource default timezone - */ - public function testSettingResourceDefaultTimezone () { - // Will throw this exception - $this->expectException(InvalidArgumentException::class); - - // Init some resource - $resource = fopen(__FILE__, 'r'); - - // Test it - FrameworkBootstrap::setDefaultTimezone($resource); - } - /** * Tests setting an empty default timezone */