Resurrecting old unit tests

This commit is contained in:
Chris Cameron
2017-07-18 12:43:56 -04:00
parent f120e2bef7
commit db66fc40cf
7 changed files with 566 additions and 0 deletions

View 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);
}
}
}