Files
linux-packaging-mono/mcs/class/System.Runtime.DurableInstancing/Test/System.Runtime.DurableInstancing/InstanceValueTest.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

27 lines
662 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Runtime.DurableInstancing;
using System.Runtime.Serialization;
using System.Xml;
using System.Xml.Linq;
using NUnit.Framework;
namespace MonoTests.System.Runtime.DurableInstancing
{
[TestFixture]
public class InstanceValueTest
{
[Test]
public void DeletedValue ()
{
Assert.AreEqual (InstanceValue.DeletedValue, InstanceValue.DeletedValue.Value, "#1"); // eek!
Assert.AreEqual (InstanceValueOptions.None, InstanceValue.DeletedValue.Options, "#2");
}
}
}