summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-crt-php/tests/ErrorTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/aws/aws-crt-php/tests/ErrorTest.php')
-rw-r--r--vendor/aws/aws-crt-php/tests/ErrorTest.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/aws/aws-crt-php/tests/ErrorTest.php b/vendor/aws/aws-crt-php/tests/ErrorTest.php
new file mode 100644
index 0000000..e84d1ed
--- /dev/null
+++ b/vendor/aws/aws-crt-php/tests/ErrorTest.php
@@ -0,0 +1,21 @@
+<?php
+/**
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * SPDX-License-Identifier: Apache-2.0.
+ */
+use AWS\CRT\CRT;
+
+final class ErrorTest extends PHPUnit_Framework_TestCase {
+
+ public function testNoInitialError() {
+ $this->assertEquals(0, CRT::last_error());
+ }
+
+ public function testCanResolveErrorName() {
+ $this->assertEquals("AWS_ERROR_SUCCESS", CRT::error_name(0));
+ }
+
+ public function testCanResolveErrorStr() {
+ $this->assertEquals("Success.", CRT::error_str(0));
+ }
+}