OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
aws-ses
/
vendor
/
aws
/
aws-crt-php
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 10:51:37 AM
rwxr-xr-x
📄
CoreTest.php
709 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
CrcTest.php
2.7 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
CredentialsTest.php
1.93 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
ErrorTest.php
594 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
EventLoopGroupTest.php
758 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
HttpMessageTest.php
3.06 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
LogTest.php
705 bytes
08/14/2024 10:50:19 AM
rw-r--r--
📄
SigningTest.php
7.83 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
StreamTest.php
1.45 KB
08/14/2024 10:50:19 AM
rw-r--r--
📄
common.inc
911 bytes
08/14/2024 10:50:19 AM
rw-r--r--
Editing: EventLoopGroupTest.php
Close
<?php /** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ use AWS\CRT\IO\EventLoopGroup as EventLoopGroup; require_once('common.inc'); final class EventLoopGroupTest extends CrtTestCase { public function testLifetime() { $elg = new EventLoopGroup(); $this->assertNotNull($elg, "Failed to create default EventLoopGroup"); $elg = null; } public function testConstructionWithOptions() { $options = EventLoopGroup::defaults(); $options['num_threads'] = 1; $elg = new EventLoopGroup($options); $this->assertNotNull($elg, "Failed to create EventLoopGroup with 1 thread"); $elg = null; } }