We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c623a94 commit f29af65Copy full SHA for f29af65
Tests/AbstractAsciiTestCase.php
@@ -55,6 +55,17 @@ public static function provideBytesAt(): array
55
];
56
}
57
58
+ public function testUnwrap()
59
+ {
60
+ $expected = ['hello', 'world'];
61
+
62
+ $s = static::createFromString('');
63
64
+ $actual = $s::unwrap([static::createFromString('hello'), static::createFromString('world')]);
65
66
+ $this->assertEquals($expected, $actual);
67
+ }
68
69
/**
70
* @dataProvider provideWrap
71
*/
0 commit comments