Public Access
Implement meeting assistant v1
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using MeetingAssistant.MeetingNotes;
|
||||
|
||||
namespace MeetingAssistant.Tests;
|
||||
|
||||
#if WINDOWS
|
||||
public sealed class OutlookClassicMeetingMetadataProviderTests
|
||||
{
|
||||
[Fact]
|
||||
public void ExtractAgendaStopsBeforeTeamsJoinInformation()
|
||||
{
|
||||
var agenda = OutlookClassicMeetingMetadataProvider.ExtractAgenda(
|
||||
"""
|
||||
Review current prototype
|
||||
Decide next backend
|
||||
|
||||
________________________________________________________________________________
|
||||
Microsoft Teams Need help?
|
||||
Join the meeting now
|
||||
https://teams.microsoft.com/l/meetup-join/...
|
||||
""");
|
||||
|
||||
Assert.Equal("Review current prototype\nDecide next backend", agenda.Replace("\r\n", "\n", StringComparison.Ordinal));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user