| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Tests\Unit;
- use App\Module\AppGame\SessionApp;
- use PHPUnit\Framework\TestCase;
- use Uraus\Kku\Response;
- class ExampleTest extends TestCase
- {
- /**
- * A basic test example.
- */
- public function test_that_true_is_true(): void
- {
- dump(SessionApp::getSessionId());
- $base64 ='ogYHCI2utsDtMg==';
- $b2 = base64_decode($base64);
- dump($b2);
- $resp =new Response();
- $resp->mergeFromString($b2);
- dump($resp->serializeToJsonString());
- $this->assertTrue(true);
- }
- }
|