Lines Matching refs:IsTrue

97 			Assert.IsTrue (nav.MoveToFirstChild ());  in DocumentWithProcessingInstruction()
99 Assert.IsTrue (!nav.MoveToFirstChild ()); in DocumentWithProcessingInstruction()
114 Assert.IsTrue (nav.MoveToFirstChild ()); in XmlRootElementOnly()
116 Assert.IsTrue (!nav.MoveToFirstChild ()); in XmlRootElementOnly()
117 Assert.IsTrue (!nav.MoveToNext ()); in XmlRootElementOnly()
118 Assert.IsTrue (!nav.MoveToPrevious ()); in XmlRootElementOnly()
121 Assert.IsTrue (!nav.MoveToNext ()); in XmlRootElementOnly()
136 Assert.IsTrue (nav.MoveToFirstChild (), "#x1"); in XmlSimpleTextContent()
138 Assert.IsTrue (!nav.MoveToNext (), "#x2"); in XmlSimpleTextContent()
139 Assert.IsTrue (!nav.MoveToPrevious (), "#x3"); in XmlSimpleTextContent()
140 Assert.IsTrue (nav.MoveToFirstChild (), "#x4"); in XmlSimpleTextContent()
143 Assert.IsTrue (nav.MoveToParent (), "#x5"); in XmlSimpleTextContent()
146 Assert.IsTrue (nav.MoveToParent (), "#x6"); in XmlSimpleTextContent()
153 Assert.IsTrue (!nav.MoveToNext (), "#x7"); in XmlSimpleTextContent()
168 Assert.IsTrue (nav.MoveToFirstChild ()); in XmlSimpleElementContent()
170 Assert.IsTrue (!nav.MoveToNext ()); in XmlSimpleElementContent()
171 Assert.IsTrue (!nav.MoveToPrevious ()); in XmlSimpleElementContent()
173 Assert.IsTrue (nav.MoveToFirstChild ()); in XmlSimpleElementContent()
176 Assert.IsTrue (nav.MoveToParent ()); in XmlSimpleElementContent()
181 Assert.IsTrue (!nav.MoveToNext ()); in XmlSimpleElementContent()
197 Assert.IsTrue (nav.MoveToFirstChild ()); in XmlTwoElementsContent()
199 Assert.IsTrue (!nav.MoveToNext ()); in XmlTwoElementsContent()
200 Assert.IsTrue (!nav.MoveToPrevious ()); in XmlTwoElementsContent()
202 Assert.IsTrue (nav.MoveToFirstChild ()); in XmlTwoElementsContent()
204 Assert.IsTrue (!nav.MoveToFirstChild ()); in XmlTwoElementsContent()
206 Assert.IsTrue (nav.MoveToNext ()); in XmlTwoElementsContent()
208 Assert.IsTrue (!nav.MoveToFirstChild ()); in XmlTwoElementsContent()
210 Assert.IsTrue (nav.MoveToPrevious ()); in XmlTwoElementsContent()
215 Assert.IsTrue (!nav.MoveToNext ()); in XmlTwoElementsContent()
231 Assert.IsTrue (!nav.MoveToNext (), "#x1"); in XmlElementWithAttributes()
232 Assert.IsTrue (!nav.MoveToPrevious (), "#x2"); in XmlElementWithAttributes()
234 Assert.IsTrue (nav.MoveToFirstAttribute (), "#x3"); in XmlElementWithAttributes()
236 Assert.IsTrue (!nav.MoveToFirstAttribute (), "#x4"); // On attributes, it fails. in XmlElementWithAttributes()
238 Assert.IsTrue (nav.MoveToNextAttribute (), "#x5"); in XmlElementWithAttributes()
240 Assert.IsTrue (!nav.MoveToNextAttribute (), "#x6"); in XmlElementWithAttributes()
242 Assert.IsTrue (nav.MoveToParent (), "#x7"); in XmlElementWithAttributes()
245 Assert.IsTrue (nav.MoveToAttribute ("alt", ""), "#x8"); in XmlElementWithAttributes()
247 Assert.IsTrue (!nav.MoveToAttribute ("src", ""), "#x9"); // On attributes, it fails. in XmlElementWithAttributes()
248 Assert.IsTrue (nav.MoveToParent (), "#x10"); in XmlElementWithAttributes()
249 Assert.IsTrue (nav.MoveToAttribute ("src", ""), "#x11"); in XmlElementWithAttributes()
276 Assert.IsTrue (nav.MoveToFirstNamespace (XPathNamespaceScope.Local)); in XmlNamespaceNode()
281 Assert.IsTrue (!nav.MoveToNextNamespace (XPathNamespaceScope.Local)); in XmlNamespaceNode()
282 Assert.IsTrue (!nav.MoveToNextNamespace (XPathNamespaceScope.ExcludeXml)); in XmlNamespaceNode()
286 Assert.IsTrue (nav.MoveToNextNamespace (XPathNamespaceScope.All)); in XmlNamespaceNode()
289 Assert.IsTrue (!nav.MoveToNextNamespace (XPathNamespaceScope.All)); in XmlNamespaceNode()
297 Assert.IsTrue (nav.MoveToFirstNamespace ()); in XmlNamespaceNode()
298 Assert.IsTrue (nav.MoveToNextNamespace ()); in XmlNamespaceNode()
303 Assert.IsTrue (nav.MoveToParent ()); in XmlNamespaceNode()
309 Assert.IsTrue (!nav.MoveToFirstNamespace (XPathNamespaceScope.Local), "Local should fail"); in XmlNamespaceNode()
310 …Assert.IsTrue (nav.MoveToFirstNamespace (XPathNamespaceScope.ExcludeXml), "ExcludeXml should succe… in XmlNamespaceNode()
314 Assert.IsTrue (nav.MoveToNextNamespace (XPathNamespaceScope.All)); in XmlNamespaceNode()
317 Assert.IsTrue (nav.MoveToParent ()); in XmlNamespaceNode()
360 Assert.IsTrue (nav.MoveTo (iter.Current), "#1"); in IsDescendant()
361 Assert.IsTrue (nav.MoveToFirstAttribute (), "#2"); in IsDescendant()
364 Assert.IsTrue (tmp.IsDescendant (nav), "#5"); in IsDescendant()
365 Assert.IsTrue (!nav.IsDescendant (tmp), "#6"); in IsDescendant()
368 Assert.IsTrue (tmp.IsDescendant (nav), "#8"); in IsDescendant()
369 Assert.IsTrue (!nav.IsDescendant (tmp), "#9"); in IsDescendant()
372 Assert.IsTrue (tmp.IsDescendant (nav), "#11"); in IsDescendant()
373 Assert.IsTrue (!nav.IsDescendant (tmp), "#12"); in IsDescendant()
477 …Assert.IsTrue (root.XPathSelectElements ("config/*").First ().XPathEvaluate (".") is IEnumerable<o… in EvaluateNodeSetAsEnumerableOfObject()
492 Assert.IsTrue (!xml.ToString ().Contains ("three"), "#1"); in RemoveDoesSnapshotCopy2()