added autofixture et other tests

This commit is contained in:
abdelkader
2023-05-09 20:41:33 -04:00
parent 48631de425
commit 3bbe7170c4
5 changed files with 109 additions and 0 deletions

View File

@@ -184,5 +184,20 @@
}
public static string[] vcfOneEntryWithTwoAddress
{
get
{
string s = @"BEGIN:VCARD\n" +
"VERSION:2.1\n" +
"FN:Jean Dupont1\n" +
"N:Dupont;Jean\n" +
"ADR;WORK;PREF;QUOTED-PRINTABLE:;Bruxelles 1200=Belgique;6A Rue Th. Decuyper\n" +
"ADR;Home;PREF;QUOTED-PRINTABLE:;Bruxelles 1200=Belgique;6A Rue Th. Decuyper\n" +
"END:VCARD";
return s.Split('\n');
}
}
}
}