Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2010-02-02 17:19:20 +0000
committerChris Goldthorpe2010-02-02 17:19:20 +0000
commitec5e1429be1adda3090625147469faf50ba20a39 (patch)
tree6cb7c569032a7ad72a74cac1792899ec4f4f2ee8 /org.eclipse.ua.tests/data
parent9741c2f28db2f49850032cbbf6dec43270cc976e (diff)
downloadeclipse.platform.ua-ec5e1429be1adda3090625147469faf50ba20a39.tar.gz
eclipse.platform.ua-ec5e1429be1adda3090625147469faf50ba20a39.tar.xz
eclipse.platform.ua-ec5e1429be1adda3090625147469faf50ba20a39.zip
Add tests for criteria values
Diffstat (limited to 'org.eclipse.ua.tests/data')
-rw-r--r--org.eclipse.ua.tests/data/help/criteria/c2.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/org.eclipse.ua.tests/data/help/criteria/c2.xml b/org.eclipse.ua.tests/data/help/criteria/c2.xml
new file mode 100644
index 000000000..64a2086a6
--- /dev/null
+++ b/org.eclipse.ua.tests/data/help/criteria/c2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?NLS TYPE="org.eclipse.help.toc"?>
+
+<!--
+ Copyright (c) 2010 IBM Corporation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+
+ Contributors:
+ IBM Corporation - initial API and implementation
+ -->
+
+<toc label="Test various syntax forms for criteria value parameter">
+ <criteria name= "platform" value="win32, linux" />
+ <topic label="Topic Linux" href="A_topic.html">
+ <criteria name= "platform" value="LINUX" />
+ </topic>
+ <topic label="Topic Win32" href="A_topic.html">
+ <criteria name= "platform" value=" win32 " />
+ </topic>
+ <topic label="No Name" href="A_topic.html">
+ <criteria value=" win32 " />
+ </topic>
+ <topic label="No Value" href="A_topic.html">
+ <criteria name=" version " />
+ </topic>
+ <topic label="No Criteria" href="A_topic.html">
+ </topic>
+</toc>

Back to the top