From bf99984d837b7f070b2f553fa1f4ff615867d091 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Fri, 8 Nov 2019 19:58:48 +0300 Subject: [PATCH] - more tests --- tests/Sentry/SnapshotterTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/Sentry/SnapshotterTest.php b/tests/Sentry/SnapshotterTest.php index c185b23..1275254 100644 --- a/tests/Sentry/SnapshotterTest.php +++ b/tests/Sentry/SnapshotterTest.php @@ -48,6 +48,9 @@ public function testLoggerWithState(): void $state = new State(); $state->setTag('test', 'tag'); $state->addLogEvent(new LogEvent(new \DateTime(), 'default', 'error', 'hello world')); + $state->addLogEvent(new LogEvent(new \DateTime(), 'default', 'info', 'hello world')); + $state->addLogEvent(new LogEvent(new \DateTime(), 'default', 'alert', 'hello world')); + $state->addLogEvent(new LogEvent(new \DateTime(), 'default', 'warning', 'hello world')); $sentry = new SentrySnapshotter( $client,