mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-13 12:37:13 +00:00
Resurrecting old unit tests
This commit is contained in:
parent
f120e2bef7
commit
db66fc40cf
7 changed files with 566 additions and 0 deletions
17
ICD.Common.Utils.Tests/Xml/IcdXmlAttributeTest.cs
Normal file
17
ICD.Common.Utils.Tests/Xml/IcdXmlAttributeTest.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using ICD.Common.Properties;
|
||||
using ICD.Common.Utils.Xml;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace ICD.Common.Utils.Tests.Xml
|
||||
{
|
||||
[TestFixture]
|
||||
public sealed class IcdXmlAttributeTest
|
||||
{
|
||||
[Test, UsedImplicitly]
|
||||
public void ValueAsIntTest()
|
||||
{
|
||||
IcdXmlAttribute attribute = new IcdXmlAttribute("test", "12");
|
||||
Assert.AreEqual("12", attribute.Value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue