OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
email
/
vendor
/
aws
/
aws-crt-php
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/10/2024 05:23:03 AM
rwxr-xr-x
📄
CoreTest.php
709 bytes
07/10/2024 05:20:11 AM
rw-r--r--
📄
CrcTest.php
2.7 KB
07/10/2024 05:20:11 AM
rw-r--r--
📄
CredentialsTest.php
1.93 KB
07/10/2024 05:20:11 AM
rw-r--r--
📄
ErrorTest.php
594 bytes
07/10/2024 05:20:11 AM
rw-r--r--
📄
EventLoopGroupTest.php
758 bytes
07/10/2024 05:20:11 AM
rw-r--r--
📄
HttpMessageTest.php
3.06 KB
07/10/2024 05:20:12 AM
rw-r--r--
📄
LogTest.php
705 bytes
07/10/2024 05:20:12 AM
rw-r--r--
📄
SigningTest.php
7.83 KB
07/10/2024 05:20:12 AM
rw-r--r--
📄
StreamTest.php
1.45 KB
07/10/2024 05:20:12 AM
rw-r--r--
📄
common.inc
911 bytes
07/10/2024 05:20:11 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()); } }