Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
405 changes: 381 additions & 24 deletions .gitignore

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Solution/Thought.vCards.UnitTests/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using NUnit.Framework;
using Thought.vCards;

namespace Tests
namespace Thought.vCards.UnitTests
{

/// <summary>
Expand Down
35 changes: 0 additions & 35 deletions Solution/Thought.vCards.UnitTests/Properties/AssemblyInfo.cs

This file was deleted.

Binary file not shown.
Binary file removed Solution/Thought.vCards.UnitTests/Resources/vssver2.scc
Binary file not shown.
49 changes: 35 additions & 14 deletions Solution/Thought.vCards.UnitTests/SampleCards.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Solution/Thought.vCards.UnitTests/Samples/Outlook2007.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using NUnit.Framework;
using Thought.vCards;

namespace Tests.Samples
namespace Thought.vCards.UnitTests.Samples
{
[TestFixture]
public class Outlook2007
Expand Down
6 changes: 3 additions & 3 deletions Solution/Thought.vCards.UnitTests/Samples/OutlookTests.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@


using System;
using System.IO;
using System.Security.Cryptography.X509Certificates;
using NUnit.Framework;
using Thought.vCards;

namespace Tests.Samples
namespace Thought.vCards.UnitTests.Samples
{

/* ===================================================================
Expand Down Expand Up @@ -437,7 +437,7 @@ public void ParseUnicodeSimple()
new StreamReader(new MemoryStream(SampleCards.UnicodeNameSample)));

Assert.NotNull(card);
Assert.AreEqual("������", card.GivenName);
Assert.AreEqual("陈丽君", card.GivenName);
}

#endregion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using NUnit.Framework;
using Thought.vCards;

namespace Tests.Samples
namespace Thought.vCards.UnitTests.Samples
{

/* ===================================================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using NUnit.Framework;
using Thought.vCards;

namespace Tests
namespace Thought.vCards.UnitTests
{
[TestFixture]
public class RfcAuthorTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using NUnit.Framework;
using Thought.vCards;

namespace Tests.Samples
namespace Thought.vCards.UnitTests.Samples
{

/* ===================================================================
Expand Down
Loading