Menu

[r1586]: / trunk / UnitTests / SameEmailTests.cs  Maximize  Restore  History

Download this file

36 lines (30 with data), 1.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using NUnit.Framework;
namespace GoContactSyncMod.UnitTests
{
[TestFixture]
public class SameEmailTests
{
[OneTimeSetUp]
public void Init()
{
}
[SetUp]
public void SetUp()
{
}
[OneTimeTearDown]
public void TearDown()
{
}
[Test]
public void Test_IsSameEmail()
{
Assert.That(OutlookPropertiesUtils.IsSameEmail("john.smith@gmail.com", "johnsmith@gmail.com"));
Assert.That(OutlookPropertiesUtils.IsSameEmail("john.smith+newsletter@gmail.com", "johnsmith@gmail.com"));
Assert.That(OutlookPropertiesUtils.IsSameEmail("Joh.n.Smith+newsletter@gmail.com", "johnsmith+..@gmail.com"));
Assert.That(OutlookPropertiesUtils.IsSameEmail("john.smith@gmail.com", "johnsmith@googlemail.com"));
Assert.That(OutlookPropertiesUtils.IsSameEmail("john.smith+newsletter@gmail.com", "johnsmith@googlemail.com"));
Assert.That(OutlookPropertiesUtils.IsSameEmail("Joh.n.Smith+newsletter@gmail.com", "johnsmith+..@googlemail.com"));
}
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.