X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fpsy%2Fpsysh%2Ftest%2FPsy%2FTest%2FConsoleColorFactoryTest.php;fp=vendor%2Fpsy%2Fpsysh%2Ftest%2FPsy%2FTest%2FConsoleColorFactoryTest.php;h=0000000000000000000000000000000000000000;hp=3da13c7b7c9238f81a13877fc2fbfb66a79426fd;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/psy/psysh/test/Psy/Test/ConsoleColorFactoryTest.php b/vendor/psy/psysh/test/Psy/Test/ConsoleColorFactoryTest.php deleted file mode 100644 index 3da13c7b7..000000000 --- a/vendor/psy/psysh/test/Psy/Test/ConsoleColorFactoryTest.php +++ /dev/null @@ -1,51 +0,0 @@ -getConsoleColor(); - $themes = $colors->getThemes(); - - $this->assertFalse($colors->isStyleForced()); - $this->assertEquals(array('blue'), $themes['line_number']); - } - - public function testGetConsoleColorForced() - { - $colorMode = Configuration::COLOR_MODE_FORCED; - $factory = new ConsoleColorFactory($colorMode); - $colors = $factory->getConsoleColor(); - $themes = $colors->getThemes(); - - $this->assertTrue($colors->isStyleForced()); - $this->assertEquals(array('blue'), $themes['line_number']); - } - - public function testGetConsoleColorDisabled() - { - $colorMode = Configuration::COLOR_MODE_DISABLED; - $factory = new ConsoleColorFactory($colorMode); - $colors = $factory->getConsoleColor(); - $themes = $colors->getThemes(); - - $this->assertFalse($colors->isStyleForced()); - $this->assertEquals(array('none'), $themes['line_number']); - } -}