Skip to content

Commit 5aa3b06

Browse files
committed
test: metrics
1 parent 7a31611 commit 5aa3b06

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

tests/Feature/MetricsTest.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
namespace Feature;
4+
5+
use Tests\TestCase;
6+
7+
class MetricsTest extends TestCase
8+
{
9+
public function testCanRetrieveMetrics(): void
10+
{
11+
$returnData = $this->client()->metrics->retrieve();
12+
$this->assertArrayHasKey('system_memory_used_bytes', $returnData);
13+
}
14+
}

0 commit comments

Comments
 (0)