Public Access
15 lines
459 B
C#
15 lines
459 B
C#
using MeetingAssistant;
|
|
|
|
namespace MeetingAssistant.Tests;
|
|
|
|
public sealed class ScreenshotOcrOptionsTests
|
|
{
|
|
[Fact]
|
|
public void DefaultPromptAsksForCompleteOrPartialVisibleParticipantEvidence()
|
|
{
|
|
Assert.Contains("exactly who is in the meeting", ScreenshotOcrOptions.DefaultPrompt);
|
|
Assert.Contains("partial", ScreenshotOcrOptions.DefaultPrompt);
|
|
Assert.Contains("\"attendees\"", ScreenshotOcrOptions.DefaultPrompt);
|
|
}
|
|
}
|