Cosmos/source/Cosmos.Build.Common.Tests/BuildPropertiesTest.cs
2015-02-11 01:38:22 +06:00

25 lines
826 B
C#

using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Cosmos.Build.Common.Tests
{
[TestClass]
public class BuildPropertiesTest
{
[TestMethod]
public void TestParsing()
{
var properties = new BuildProperties();
properties.SetProperty(BuildProperties.StackCorruptionDetectionEnabledString, "False");
Assert.AreEqual(
false,
properties.GetProperty<bool>(BuildProperties.StackCorruptionDetectionEnabledString, true));
Assert.AreEqual(
false,
properties.StackCorruptionDetectionEnabled);
Assert.AreEqual(
"False",
properties.GetProperty(BuildProperties.StackCorruptionDetectionEnabledString));
}
}
}