diff --git a/src/Instrumentation/AwsSdk/AwsSdkInstrumentation.php b/src/Instrumentation/AwsSdk/AwsSdkInstrumentation.php new file mode 100644 index 00000000..75b79a9d --- /dev/null +++ b/src/Instrumentation/AwsSdk/AwsSdkInstrumentation.php @@ -0,0 +1,44 @@ +assertEquals( + 'AWS SDK Instrumentation', + (new AwsSdkInstrumentation())->getName() + ); + } + + public function testInstrumentationVersion() + { + $this->assertEquals( + '0.0.1', + (new AwsSdkInstrumentation())->getVersion() + ); + } + + public function testInstrumentationSchemaUrl() + { + $this->assertNull((new AwsSdkInstrumentation())->getSchemaUrl()); + } + + public function testInstrumentationInit() + { + $this->assertTrue( + (new AwsSdkInstrumentation())->init() + ); + } + + public function testInstrumentationActivated() + { + $this->assertTrue( + (new AwsSdkInstrumentation())->activate() + ); + } +}