Public Access
Archive completed meeting assistant changes
PR and Push Build/Test / build-and-test (push) Successful in 9m19s
PR and Push Build/Test / build-and-test (push) Successful in 9m19s
This commit is contained in:
@@ -8,7 +8,7 @@ public sealed class OutlookClassicMeetingMetadataProviderTests
|
||||
[Fact]
|
||||
public void ExtractAgendaStopsBeforeTeamsJoinInformation()
|
||||
{
|
||||
var agenda = OutlookClassicMeetingMetadataProvider.ExtractAgenda(
|
||||
var agenda = OutlookClassicAppointmentMetadata.ExtractAgenda(
|
||||
"""
|
||||
Review current prototype
|
||||
Decide next backend
|
||||
@@ -25,7 +25,7 @@ public sealed class OutlookClassicMeetingMetadataProviderTests
|
||||
[Fact]
|
||||
public void NormalizeAttendeesDeduplicatesOrganizerAndRecipientEmail()
|
||||
{
|
||||
var attendees = OutlookClassicMeetingMetadataProvider.NormalizeAttendees([
|
||||
var attendees = OutlookClassicAppointmentMetadata.NormalizeAttendees([
|
||||
"Marcus.Altmann@sew-eurodrive.de",
|
||||
"Marcus.Altmann@sew-eurodrive.de <Marcus.Altmann@sew-eurodrive.de>",
|
||||
"Schweigert, Manuel",
|
||||
@@ -37,5 +37,14 @@ public sealed class OutlookClassicMeetingMetadataProviderTests
|
||||
"Schweigert, Manuel"
|
||||
], attendees);
|
||||
}
|
||||
|
||||
[Theory]
|
||||
[InlineData("Canceled: Project sync")]
|
||||
[InlineData("Cancelled: Project sync")]
|
||||
[InlineData("Abgesagt: Project sync")]
|
||||
public void SubjectIndicatesCancellationRecognizesOutlookCanceledPrefixes(string subject)
|
||||
{
|
||||
Assert.True(OutlookClassicCom.SubjectIndicatesCancellation(subject));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user