Home
last modified time | relevance | path

Searched refs:NameTest (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/main/java/com/servingxml/components/saxfilter/
H A DRemoveEmptyAttributesAppenderAssembler.java27 import com.servingxml.util.NameTest;
59 NameTest elementTest = NameTest.parse(context.getQnameContext(), elementQnames); in assemble()
60 NameTest attributeTest = NameTest.parse(context.getQnameContext(), attributeQnames); in assemble()
61 NameTest exceptElementTest = NameTest.parse(context.getQnameContext(), exceptElementQnames); in assemble()
62 NameTest exceptAttributeTest = NameTest.parse(context.getQnameContext(), exceptAttributeQnames); in assemble()
69 private final NameTest elementTest;
70 private final NameTest exceptElementTest;
71 private final NameTest attributeTest;
72 private final NameTest exceptAttributeTest;
74 public RemoveEmptyAttributesAppender(NameTest elementTest, NameTest exceptElementTest, in RemoveEmptyAttributesAppender()
[all …]
H A DRemoveEmptyAttributes.java32 import com.servingxml.util.NameTest;
37 private final NameTest elementTest;
38 private final NameTest exceptElementTest;
39 private final NameTest attributeTest;
40 private final NameTest exceptAttributeTest;
42 public RemoveEmptyAttributes(NameTest elementTest, NameTest exceptElementTest, in RemoveEmptyAttributes()
43 NameTest attributeTest, NameTest exceptAttributeTest) { in RemoveEmptyAttributes()
H A DRemoveEmptyElements.java32 import com.servingxml.util.NameTest;
37 private final NameTest elements;
38 private final NameTest except;
42 public RemoveEmptyElements(NameTest elements) { in RemoveEmptyElements()
44 this.except = NameTest.NONE; in RemoveEmptyElements()
48 public RemoveEmptyElements(NameTest elements, boolean allDescendents) { in RemoveEmptyElements()
50 this.except = NameTest.NONE; in RemoveEmptyElements()
54 public RemoveEmptyElements(NameTest elements, NameTest except) { in RemoveEmptyElements()
60 public RemoveEmptyElements(NameTest elements, NameTest except, boolean allDescendents) { in RemoveEmptyElements()
H A DRemoveEmptyElementsAppenderAssembler.java29 import com.servingxml.util.NameTest;
71 NameTest elements = NameTest.parse(context.getQnameContext(), elementQnames); in assemble()
72 NameTest except = NameTest.parse(context.getQnameContext(), exceptElementQnames); in assemble()
81 private final NameTest elements;
82 private final NameTest except;
85 public RemoveEmptyElementsAppender(NameTest elements, NameTest except, in RemoveEmptyElementsAppender()
/dports/devel/poco/poco-1.10.1-all/XML/testsuite/src/
H A DNameTest.cpp20 NameTest::NameTest(const std::string& name): CppUnit::TestCase(name) in NameTest() function in NameTest
25 NameTest::~NameTest() in ~NameTest()
30 void NameTest::testSplit() in testSplit()
51 void NameTest::testLocalName() in testLocalName()
65 void NameTest::testPrefix() in testPrefix()
79 void NameTest::testName() in testName()
109 void NameTest::testCompare() in testCompare()
135 void NameTest::testSwap() in testSwap()
149 void NameTest::setUp() in setUp()
154 void NameTest::tearDown() in tearDown()
[all …]
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/main/java/com/servingxml/util/
H A DNameTest.java32 public abstract class NameTest { class
33 public static final NameTest ANY = new MatchesAny();
34 public static final NameTest NONE = new MatchesNone();
44 NameTest tail = null; in parse()
45 NameTest nameToken = NameTest.NONE; in parse()
54 nameToken = NameTest.ANY; in parse()
91 static final class MatchesAny extends NameTest {
97 static final class MatchesNone extends NameTest {
103 static final class QualifiedNameToken extends NameTest {
118 static final class MatchesAnyNamespaceUri extends NameTest {
[all …]
/dports/graphics/podofo/podofo-0.9.7/test/unit/
H A DNameTest.cpp28 CPPUNIT_TEST_SUITE_REGISTRATION( NameTest );
30 void NameTest::setUp() in setUp()
34 void NameTest::tearDown() in tearDown()
38 void NameTest::testParseAndWrite() in testParseAndWrite()
78 void NameTest::testNameEncoding() in testNameEncoding()
89 void NameTest::testEncodedNames() in testEncodedNames()
100 void NameTest::testEquality() in testEquality()
108 void NameTest::testWrite() in testWrite()
117 void NameTest::testFromEscaped() in testFromEscaped()
175 void NameTest::TestWrite( const char * pszName, const char* pszResult ) in TestWrite()
[all …]
/dports/net/kea/kea-2.0.1/src/lib/dns/tests/
H A Dname_unittest.cc220 TEST_F(NameTest, fromText) { in TEST_F() argument
382 TEST_F(NameTest, atSign) { in TEST_F() argument
486 TEST_F(NameTest, toText) { in TEST_F() argument
581 TEST_F(NameTest, compare) { in TEST_F() argument
608 TEST_F(NameTest, equal) { in TEST_F() argument
660 TEST_F(NameTest, split) { in TEST_F() argument
704 TEST_F(NameTest, at) { in TEST_F() argument
725 TEST_F(NameTest, leq) { in TEST_F() argument
739 TEST_F(NameTest, geq) { in TEST_F() argument
750 TEST_F(NameTest, lthan) { in TEST_F() argument
[all …]
/dports/devel/corrade/corrade-2020.06/doc/snippets/
H A Dtestsuite-iteration.cpp32 struct NameTest: TestSuite::Tester { struct
33 explicit NameTest();
38 NameTest::NameTest() { in NameTest() function in NameTest
39 addTests({&NameTest::noYellingAllowed}); in NameTest()
43 void NameTest::noYellingAllowed() { in noYellingAllowed()
54 CORRADE_TEST_MAIN(NameTest)
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/test/java/com/servingxml/components/saxfilter/
H A DRemoveEmptyAttributesTest.java45 import com.servingxml.util.NameTest;
87 NameTest elementNameTest = NameTest.parse(nameContext, elementNames); in testRemoveEmptyIdAttribute()
88 NameTest attributeNameTest = NameTest.parse(nameContext, attributeNames); in testRemoveEmptyIdAttribute()
89 …xmlFilter = new RemoveEmptyAttributes(elementNameTest, NameTest.NONE, attributeNameTest, NameTest.… in testRemoveEmptyIdAttribute()
110 NameTest elementNameTest = NameTest.parse(nameContext, elementNames); in testNoAttributeMatches()
111 NameTest attributeNameTest = NameTest.parse(nameContext, attributeNames); in testNoAttributeMatches()
112 …xmlFilter = new RemoveEmptyAttributes(elementNameTest, NameTest.NONE, attributeNameTest, NameTest.… in testNoAttributeMatches()
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/test/java/com/servingxml/util/
H A DNameTestTest.java55 NameTest nameToken = NameTest.parse(context,tokens); in testLocalNameToken()
68 NameTest nameToken = NameTest.parse(context,tokens); in testAnyNamespace()
81 NameTest nameToken = NameTest.parse(context,tokens); in testAny()
94 NameTest nameToken = NameTest.parse(context,tokens); in testEmpty()
/dports/lang/ghc/ghc-8.10.7/libraries/time/test/unix/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 instance (Testable a) => NameTest (Gen a) where
38 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/math/hs-Agda/Agda-2.6.2/_cabal_deps/time-compat-1.9.3/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/time-compat-1.9.6/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a, Show a, Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a, NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/games/hedgewars-server/hedgewars-src-1.0.0/gameServer/_cabal_deps/time-compat-1.9.3/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/converters/hs-aeson-pretty/aeson-pretty-0.8.8/_cabal_deps/time-compat-1.9.3/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/lang/ghc/ghc-8.10.7/libraries/time/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/time-compat-1.9.3/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/finance/hs-hledger/hledger-1.19/_cabal_deps/time-compat-1.9.3/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/time-compat-1.9.6/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a, Show a, Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a, NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/devel/hs-ShellCheck/ShellCheck-0.8.0/_cabal_deps/time-compat-1.9.6.1/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a, Show a, Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a, NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/devel/hs-hpack/hpack-0.34.4/_cabal_deps/time-compat-1.9.3/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a,Show a,Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a,NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/devel/hs-spago/spago-0.20.3/_cabal_deps/time-compat-1.9.5/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a, Show a, Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a, NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/time-compat-1.9.5/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a, Show a, Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a, NameTest t) => [a] -> (a -> t) -> [TestTree]
/dports/devel/hs-hlint/hlint-3.3.4/_cabal_deps/time-compat-1.9.5/test/main/Test/
H A DTestUtil.hs17 class NameTest a where constructor
20 instance NameTest [TestTree] where
23 instance NameTest Assertion where
26 instance NameTest Property where
29 instance NameTest Result where
32 instance (Arbitrary a, Show a, Testable b) => NameTest (a -> b) where
35 tgroup :: (Show a, NameTest t) => [a] -> (a -> t) -> [TestTree]

12345678910>>...12