Public Access
Add meeting assistant speech and summary automation
This commit is contained in:
@@ -21,5 +21,21 @@ public sealed class OutlookClassicMeetingMetadataProviderTests
|
||||
|
||||
Assert.Equal("Review current prototype\nDecide next backend", agenda.Replace("\r\n", "\n", StringComparison.Ordinal));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void NormalizeAttendeesDeduplicatesOrganizerAndRecipientEmail()
|
||||
{
|
||||
var attendees = OutlookClassicMeetingMetadataProvider.NormalizeAttendees([
|
||||
"Marcus.Altmann@sew-eurodrive.de",
|
||||
"Marcus.Altmann@sew-eurodrive.de <Marcus.Altmann@sew-eurodrive.de>",
|
||||
"Schweigert, Manuel",
|
||||
" "
|
||||
]);
|
||||
|
||||
Assert.Equal([
|
||||
"Marcus.Altmann@sew-eurodrive.de",
|
||||
"Schweigert, Manuel"
|
||||
], attendees);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user