mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
25 lines
834 B
C#
25 lines
834 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(BuildPropertyNames.StackCorruptionDetectionEnabledString, "False");
|
|
Assert.AreEqual(
|
|
false,
|
|
properties.GetProperty<bool>(BuildPropertyNames.StackCorruptionDetectionEnabledString, true));
|
|
Assert.AreEqual(
|
|
false,
|
|
properties.StackCorruptionDetectionEnabled);
|
|
Assert.AreEqual(
|
|
"False",
|
|
properties.GetProperty(BuildPropertyNames.StackCorruptionDetectionEnabledString));
|
|
}
|
|
}
|
|
}
|