Skip to content

Commit 77d1fc9

Browse files
committed
Testhub slipped through
1 parent 2e94667 commit 77d1fc9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

test/Sentry.Unity.Tests/Stubs/TestHub.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ public SentryId CaptureEvent(SentryEvent evt, Scope? scope = null, SentryHint? h
3131
return evt.EventId;
3232
}
3333

34+
public SentryId CaptureFeedback(SentryFeedback feedback, out CaptureFeedbackResult result, Scope? scope = null,
35+
SentryHint? hint = null)
36+
{
37+
throw new NotImplementedException();
38+
}
39+
3440
public void CaptureFeedback(SentryFeedback feedback, Scope? scope = null, SentryHint? hint = null)
3541
{
3642
throw new NotImplementedException();
@@ -192,6 +198,12 @@ public SentryId CaptureEvent(SentryEvent evt, SentryHint? hint, Action<Scope> co
192198
throw new NotImplementedException();
193199
}
194200

201+
public SentryId CaptureFeedback(SentryFeedback feedback, out CaptureFeedbackResult result, Action<Scope> configureScope,
202+
SentryHint? hint = null)
203+
{
204+
throw new NotImplementedException();
205+
}
206+
195207
public void CaptureFeedback(SentryFeedback feedback, Action<Scope> configureScope, SentryHint? hint = null)
196208
{
197209
throw new NotImplementedException();

0 commit comments

Comments
 (0)