X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=tests%2FUnit%2FModels%2FChatLogTest.php;fp=tests%2FUnit%2FModels%2FChatLogTest.php;h=0000000000000000000000000000000000000000;hb=6a643908d58f26272c2095616514a140e7c0b4c0;hp=30b8732a09c3fe77c54788c87e16af5099eae96a;hpb=29ee4d076868ce530e94a4dcea5d5cf8be772571;p=alttp.git diff --git a/tests/Unit/Models/ChatLogTest.php b/tests/Unit/Models/ChatLogTest.php deleted file mode 100644 index 30b8732..0000000 --- a/tests/Unit/Models/ChatLogTest.php +++ /dev/null @@ -1,38 +0,0 @@ -assertEquals('gg', ChatLog::classify('gg')); - $this->assertEquals('gg', ChatLog::classify('GG')); - $this->assertEquals('gg', ChatLog::classify('Gg')); - - $this->assertEquals('gl', ChatLog::classify('glhf')); - $this->assertEquals('gl', ChatLog::classify('gl & hf')); - - $this->assertEquals('hi', ChatLog::classify('hi')); - $this->assertEquals('hi', ChatLog::classify('hallo')); - $this->assertNotEquals('hi', ChatLog::classify('hier steht was')); - - $this->assertEquals('hype', ChatLog::classify('122 Hype!')); - - $this->assertEquals('number', ChatLog::classify('13')); - $this->assertEquals('number', ChatLog::classify('22')); - - $this->assertEquals('lol', ChatLog::classify('haha')); - $this->assertEquals('lol', ChatLog::classify('KEKW')); - $this->assertEquals('lol', ChatLog::classify('LUL')); - - $this->assertEquals('o7', ChatLog::classify('o7')); - - $this->assertEquals('pog', ChatLog::classify('Pog')); - - $this->assertEquals('unclassified', ChatLog::classify('')); - } - -}