xquery/XQuery__XPathNodeTest.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 02 Jul 2018 08:46:01 +0200
changeset 305 bad21c4f64bf
parent 296 ea3dbc023c80
permissions -rw-r--r--
Tagged Smalltalk/X 8.0.0

"{ Package: 'stx:goodies/xmlsuite/xquery' }"

"{ NameSpace: XQuery }"

AstNode subclass:#XPathNodeTest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'XQuery-AST-XPath'
!


!XPathNodeTest methodsFor:'testing'!

isXPathAnyKindTest
    ^ false

    "Created: / 21-11-2007 / 11:07:24 / janfrog"
!

isXPathAttributeTest
    ^ false

    "Created: / 21-11-2007 / 11:07:24 / janfrog"
!

isXPathCommentTest
    ^ false

    "Created: / 21-11-2007 / 11:07:24 / janfrog"
!

isXPathDocumentTest
    ^ false

    "Created: / 21-11-2007 / 11:07:24 / janfrog"
!

isXPathElementTest
    ^ false

    "Created: / 21-11-2007 / 11:07:24 / janfrog"
!

isXPathKindTest
    ^ true

    "Created: / 21-11-2007 / 11:06:23 / janfrog"
!

isXPathNameTest
    ^ false

    "Created: / 21-11-2007 / 11:06:23 / janfrog"
!

isXPathProcessingInstructionTest
    ^ false

    "Created: / 21-11-2007 / 11:07:24 / janfrog"
!

isXPathTextTest
    ^ false

    "Created: / 21-11-2007 / 11:07:24 / janfrog"
! !

!XPathNodeTest class methodsFor:'documentation'!

version_SVN
    ^ '$Id$'
! !