コード例 #1
0
 public void BaseTestInitialize()
 {
     ClassUnderTest = new Implementation1();
 }
コード例 #2
0
ファイル: StringableTest.cs プロジェクト: parloti/TypeRegex
        public void ImplicitConversionTest()
        {
            string stringable = new Implementation1("string");

            Assert.AreEqual(typeof(string), stringable.GetType());
        }