[NUI][NUI.Devel] Update nui line coverage TCs.
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / public / Xaml / TSXamlParseException.cs
index 88669d9..7c6d3a9 100755 (executable)
@@ -73,6 +73,24 @@ namespace Tizen.NUI.Devel.Tests
 
         [Test]
         [Category("P1")]
+        [Description("XamlParseException XamlParseException")]
+        [Property("SPEC", "Tizen.NUI.XamlParseException.XamlParseException C")]
+        [Property("SPEC_URL", "-")]
+        [Property("CRITERIA", "CONSTR")]
+        public void XamlParseExceptionConstructor3()
+        {
+            tlog.Debug(tag, $"XamlParseExceptionConstructor START");
+
+            Exception e1 = new Exception();
+            XamlParseException x3 = new XamlParseException("myMessage", e1);
+            Assert.IsNotNull(x3, "null XamlParseException");
+            Assert.IsInstanceOf<XamlParseException>(x3, "Should return XamlParseException instance.");
+            x3 = null;
+            tlog.Debug(tag, $"XamlParseExceptionConstructor END");
+        }
+
+        [Test]
+        [Category("P1")]
         [Description("XamlParseException XmlInfo ")]
         [Property("SPEC", "Tizen.NUI.XamlParseException.XmlInfo A")]
         [Property("SPEC_URL", "-")]