OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
aws
/
aws-sdk-php
/
tests
/
Exception
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
AwsExceptionTest.php
5.83 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
CouldNotCreateChecksumExceptionTest.php
578 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
EventStreamDataExceptionTest.php
502 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
MultipartUploadExceptionTest.php
1.98 KB
05/19/2025 10:07:17 AM
rw-r--r--
Editing: EventStreamDataExceptionTest.php
Close
<?php namespace Aws\Test\Exception; use Aws\Exception\EventStreamDataException; use PHPUnit\Framework\TestCase; /** * @covers Aws\Exception\EventStreamDataException */ class EventStreamDataExceptionTest extends TestCase { public function testAccessors() { $e = new EventStreamDataException('Code', 'This is a message.'); $this->assertSame('Code', $e->getAwsErrorCode()); $this->assertSame('This is a message.', $e->getAwsErrorMessage()); } }