summaryrefslogtreecommitdiffstats
path: root/tests/Misc/UtfStringTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Misc/UtfStringTest.php')
-rw-r--r--tests/Misc/UtfStringTest.php12
1 files changed, 4 insertions, 8 deletions
diff --git a/tests/Misc/UtfStringTest.php b/tests/Misc/UtfStringTest.php
index d2c4dbf..c83339a 100644
--- a/tests/Misc/UtfStringTest.php
+++ b/tests/Misc/UtfStringTest.php
@@ -37,22 +37,18 @@ class UtfStringTest extends TestCase
$this->assertNull($str[static::TEST_PHRASE_LEN]);
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Not implemented.
- */
public function testSet()
{
+ $this->expectExceptionMessage('Not implemented.');
+ $this->expectException(\Exception::class);
$str = new UtfString('');
$str[0] = 'a';
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Not implemented.
- */
public function testUnset()
{
+ $this->expectExceptionMessage('Not implemented.');
+ $this->expectException(\Exception::class);
$str = new UtfString('');
unset($str[0]);
}