mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-27 11:24:58 +00:00
17 lines
359 B
C#
17 lines
359 B
C#
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);
|
|
}
|
|
}
|
|
} |