OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
zzXpress
/
vendor
/
aws
/
aws-crt-php
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:22 AM
rwxr-xr-x
📄
CoreTest.php
709 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
CrcTest.php
2.7 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
CredentialsTest.php
1.93 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
ErrorTest.php
594 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
EventLoopGroupTest.php
758 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
HttpMessageTest.php
3.06 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
LogTest.php
705 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
SigningTest.php
7.83 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
StreamTest.php
1.45 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
common.inc
911 bytes
01/07/2025 11:32:01 AM
rw-r--r--
Editing: CoreTest.php
Close
<?php /** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ use AWS\CRT\CRT; use Yoast\PHPUnitPolyfills\TestCases\TestCase; require_once('common.inc'); // This intentionally does not inherit from CrtTestCase because it needs a clean-room environment final class CoreTest extends TestCase { // The CRT should always be available in this test suite public function testIsAvailable() { $this->assertTrue(CRT::isAvailable()); } // We have done nothing to necessitate loading the CRT, it should not be loaded public function testIsLoaded() { $this->assertTrue(!CRT::isLoaded()); } }