* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace EasyWeChat\Tests\Kernel\Messages; use EasyWeChat\Kernel\Messages\Raw; use EasyWeChat\Tests\TestCase; class RawTest extends TestCase { public function testBasicFeatures() { $content = 'foo'; $raw = new Raw($content); $this->assertSame($content, $raw->content); $this->assertSame($content, strval($raw)); } }