You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.0 KiB
75 lines
2.0 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using ICSharpCode.XmlEditor; |
|
using NUnit.Framework; |
|
using System; |
|
using System.Xml; |
|
|
|
namespace XmlEditor.Tests.Parser |
|
{ |
|
/// <summary> |
|
/// Tests the comparison of <see cref="QualifiedName"/> items. |
|
/// </summary> |
|
[TestFixture] |
|
public class QualifiedNameTestFixture |
|
{ |
|
[Test] |
|
public void EqualsTest1() |
|
{ |
|
QualifiedName name1 = new QualifiedName("foo", "http://foo.com"); |
|
QualifiedName name2 = new QualifiedName("foo", "http://foo.com"); |
|
|
|
Assert.AreEqual(name1, name2, "Should be the same."); |
|
} |
|
|
|
[Test] |
|
public void EqualsTest2() |
|
{ |
|
QualifiedName name1 = new QualifiedName("foo", "http://foo.com", "f"); |
|
QualifiedName name2 = new QualifiedName("foo", "http://foo.com", "f"); |
|
|
|
Assert.AreEqual(name1, name2, "Should be the same."); |
|
} |
|
|
|
[Test] |
|
public void EqualsTest3() |
|
{ |
|
QualifiedName name1 = new QualifiedName("foo", "http://foo.com", "f"); |
|
QualifiedName name2 = new QualifiedName("foo", "http://foo.com", "ggg"); |
|
|
|
Assert.IsTrue(name1 == name2, "Should be the same."); |
|
} |
|
|
|
[Test] |
|
public void NotEqualsTest1() |
|
{ |
|
QualifiedName name1 = new QualifiedName("foo", "http://foo.com", "f"); |
|
QualifiedName name2 = new QualifiedName("foo", "http://bar.com", "f"); |
|
|
|
Assert.IsFalse(name1 == name2, "Should not be the same."); |
|
} |
|
|
|
[Test] |
|
public void NotEqualsTest2() |
|
{ |
|
QualifiedName name1 = new QualifiedName("foo", "http://foo.com", "f"); |
|
QualifiedName name2 = null; |
|
|
|
Assert.IsFalse(name1 == name2, "Should not be the same."); |
|
} |
|
|
|
[Test] |
|
public void HashCodeTest() |
|
{ |
|
QualifiedName name1 = new QualifiedName("foo", "http://foo.com", "f"); |
|
XmlQualifiedName xmlQualifiedName = new XmlQualifiedName("foo", "http://foo.com"); |
|
|
|
Assert.AreEqual(name1.GetHashCode(), xmlQualifiedName.GetHashCode()); |
|
} |
|
} |
|
}
|
|
|