Revision: 3884
Author: pekka.klarck
Date: Tue Aug 24 04:39:09 2010
Log: format
http://code.google.com/p/robotframework/source/detail?r=3884

Added:
 /trunk/atest/robot/standard_libraries/builtin/variable_should_exist.txt
 /trunk/atest/testdata/standard_libraries/builtin/variable_should_exist.txt
Deleted:
 /trunk/atest/robot/standard_libraries/builtin/variable_should_exist.html
 /trunk/atest/testdata/standard_libraries/builtin/variable_should_exist.html

=======================================
--- /dev/null
+++ /trunk/atest/robot/standard_libraries/builtin/variable_should_exist.txt Tue Aug 24 04:39:09 2010
@@ -0,0 +1,76 @@
+*** Settings ***
+Documentation Tests for variable should and should not exist related functionality in BuiltIn +Suite Setup Run Tests ${EMPTY} standard_libraries${/}builtin${/}variable_should_exist.txt
+Force Tags      regression  jybot  pybot
+Resource        atest_resource.txt
+
+*** Test Cases ***
+Variable Should Exist With Default Error Message
+    Check Test Case  Variable Should Exist With Default Error Message
+
+Variable Should Exist With Given Error Message
+    Check Test Case  Variable Should Exist With Given Error Message
+
+Variable Should Exist With Error Message Containing Variables
+ Check Test Case Variable Should Exist With Error Message Containing Variables
+
+Variable Should Exist Using $name format
+    Check Test Case  Variable Should Exist Using $name format
+
+Variable Should Exist Using Escaped format
+    Check Test Case  Variable Should Exist Using Escaped format
+
+Variable Should Exist With Built In Variables
+    Check Test Case  Variable Should Exist With Built In Variables
+
+Variable Should Exist With Extended Variable Syntax
+    Check Test Case  Variable Should Exist With Extended Variable Syntax
+
+Variable Should Exist With Extended Variable Syntax And Missing Object
+ Check Test Case Variable Should Exist With Extended Variable Syntax And Missing Object
+
+Variable Should Exist With Invalid name
+    Check Test Case  Variable Should Exist With Invalid name
+
+Variable Should Not Exist With Default error message
+    Check Test Case  Variable Should Not Exist With Default error message
+
+Variable Should Not Exist With Given Error Message
+    Check Test Case  Variable Should Not Exist With Given Error Message
+
+Variable Should Not Exist With Error Message Containing Variables
+ Check Test Case Variable Should Not Exist With Error Message Containing Variables
+
+Variable Should Not Exist Using $name format
+    Check Test Case  Variable Should Not Exist Using $name format
+
+Variable Should Not Exist Using Escaped format
+    Check Test Case  Variable Should Not Exist Using Escaped Format
+
+Variable Should Not Exist With Built In Variables
+    Check Test Case  Variable Should Not Exist With Built In Variables
+
+Variable Should Not Exist With Extended Variable Syntax
+ Check Test Case Variable Should Not Exist With Extended Variable Syntax
+
+Variable Should Not Exist With Extended Variable Syntax And Missing Object
+ Check Test Case Variable Should Not Exist With Extended Variable Syntax And Missing Object
+
+Variable Should Not Exist With Invalid name
+    Check Test Case  Variable Should Not Exist With Invalid name
+
+Variable Should Exist In User Keyword When Variable Name Is Argument And Variable Exists
+    Check Test Case  ${TEST NAME}
+
+Variable Should Exist In User Keyword Fails When Variable Name Is Argument And Variable Does Not Exists
+    Check Test Case  ${TEST NAME}
+
+Variable Should Not Exists In User Keyword When Variable Name Is Argument
+    Check Test Case  ${TEST NAME}
+
+Variable Should Exist When Variable Has Variable Like Value
+    Check Test Case  ${TEST NAME}
+
+Variable Should Not Exist Fails When Variable Has Variable Like Value
+    Check Test Case  ${TEST NAME}
+
=======================================
--- /dev/null
+++ /trunk/atest/testdata/standard_libraries/builtin/variable_should_exist.txt Tue Aug 24 04:39:09 2010
@@ -0,0 +1,123 @@
+*** Settings ***
+Variables       variables_to_verify.py
+
+*** Variables ***
+${scalar}  Hi tellus
+
+*** Test Cases ***
+Variable Should Exist With Default Error Message
+    [Documentation]  FAIL Variable \${non-existing} does not exist
+    Variable Should Exist  ${scalar}
+    Variable Should Exist  ${non-existing}
+
+Variable Should Exist With Given Error Message
+    [Documentation]  FAIL My non-default error message
+    Variable Should Exist  ${scalar}  This would be the error message
+    Variable Should Exist  ${non-existing}  My non-default error message
+
+Variable Should Exist With Error Message Containing Variables
+    [Documentation]  FAIL Error with vars: ${scalar}
+    Variable Should Exist  ${non-existing}  Error with vars: ${scalar}
+
+Variable Should Exist Using $name format
+    [Documentation]  FAIL Variable \${non-existing} does not exist
+    Variable Should Exist  $scalar  This would be the error message
+    Variable Should Exist  $non-existing
+
+Variable Should Exist Using Escaped format
+    [Documentation]  FAIL Variable \${non-existing} does not exist
+    Variable Should Exist  \${scalar}
+    Variable Should Exist  \${non-existing}
+
+Variable Should Exist With Built In Variables
+    Variable Should Exist  \${TEMPDIR}
+    Variable Should Exist  \${/}
+    Variable Should Exist  \${10}
+    Variable Should Exist  \${TRUE}
+    # Currently this is not working Variable Should Exist \${CURDIR}
+
+Variable Should Exist With Extended Variable Syntax
+ [Documentation] FAIL Variable \${length attribute.missing} does not exist
+    Variable Should Exist  \${length attribute.length}
+    Variable Should Exist  \${length attribute.missing}
+
+Variable Should Exist With Extended Variable Syntax And Missing Object
+    [Documentation]  FAIL Variable \${missing.missing} does not exist
+    Variable Should Exist  \${missing.missing}
+
+Variable Should Exist With Invalid name
+    [Documentation]  FAIL Invalid variable syntax 'invalid'
+    Variable Should Exist  invalid
+
+Variable Should Not Exist With Default error message
+    [Documentation]  FAIL Variable \${scalar} exists
+    Variable Should Not Exist  ${non-existing}
+    Variable Should Not Exist  ${scalar}
+
+Variable Should Not Exist With Given Error Message
+    [Documentation]  FAIL This is the error message
+    Variable Should Not Exist  ${non-existing}  This should not fail
+    Variable Should Not Exist  ${scalar}  This is the error message
+
+Variable Should Not Exist With Error Message Containing Variables
+    [Documentation]  FAIL Error with vars: ${scalar} & ${42}
+ Variable Should Not Exist ${scalar} Error with vars: ${scalar} & ${42}
+
+Variable Should Not Exist With Built In Variables
+    [Documentation]  FAIL Variable \${10} exists
+    Variable Should Not Exist  \${10}
+
+Variable Should Not Exist With Extended Variable Syntax
+    [Documentation]  FAIL Variable \${length attribute.length} exists
+    Variable Should Not Exist  \${length attribute.missing}
+    Variable Should Not Exist  \${length attribute.length}
+
+Variable Should Not Exist With Extended Variable Syntax And Missing Object
+    Variable Should Not Exist  \${missing.missing}
+
+Variable Should Not Exist Using $name format
+    [Documentation]  FAIL Variable \${scalar} exists
+    Variable Should Not Exist  $non-existing
+    Variable Should Not Exist  $scalar
+
+Variable Should Not Exist Using Escaped format
+    [Documentation]  FAIL Variable \${scalar} exists
+    Variable Should Not Exist  \${non-existing}
+    Variable Should Not Exist  \${scalar}
+
+Variable Should Not Exist With Invalid name
+    [Documentation]  FAIL Invalid variable syntax 'invalid'
+    Variable Should Not Exist  invalid
+
+Variable Should Exist In User Keyword When Variable Name Is Argument And Variable Exists
+    Set Test Variable  ${foo}  \${bar}
+    Check Variable Exists In UK  \${foo}
+
+Variable Should Exist In User Keyword Fails When Variable Name Is Argument And Variable Does Not Exists
+    [Documentation]  FAIL Variable \${foo} does not exist
+    Check Variable Exists In UK  \${foo}
+
+Variable Should Not Exists In User Keyword When Variable Name Is Argument
+    [Documentation]  FAIL Variable \${foo} exists
+    Check Variable Does Not Exist In UK  \${foo}
+    Set Test Variable  ${foo}  \${bar}
+    Check Variable Does Not Exist In UK  \${foo}
+
+Variable Should Exist When Variable Has Variable Like Value
+    ${variable} =  Set Variable  \${value}
+    Variable Should Exist  \${variable}
+
+Variable Should Not Exist Fails When Variable Has Variable Like Value
+    [Documentation]  FAIL Variable \${variable} exists
+    ${variable} =  Set Variable  \${value}
+    Variable Should Not Exist  \${variable}
+
+*** Keywords ***
+Check Variable Exists In UK
+    [Arguments]  ${variable name}
+    Variable Should Exist  ${variable name}
+
+Check Variable Does Not Exist In UK
+    [Arguments]  ${variable name}
+    Variable Should Not Exist  ${variable name}
+
=======================================
--- /trunk/atest/robot/standard_libraries/builtin/variable_should_exist.html Mon Apr 12 05:17:10 2010
+++ /dev/null
@@ -1,589 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head>
-<meta name="generator" content="HTML Tidy, see www.w3.org">
-<style type="text/css">
-html { font-family: Arial,Helvetica,sans-serif;
-background-color: white;
-color: black;
-}
-p { max-width: 60em;
-}
-table { border-collapse: collapse;
-empty-cells: show;
-margin: 1em 0em;
-border: 0.1em solid black;
-}
-th, td {
-border-style: solid;
-border-width: 0.05em 0.1em;
-border-color: black;
-padding: 0.1em 0.2em;
-height: 1.5em;
-}
-th {
-background-color: rgb(192, 192, 192);
-color: black;
-border-width: 0.1em;
-font-weight: bold;
-text-align: center;
-text-transform: capitalize;
-letter-spacing: 0.1em;
-}
-/* Widths of named columns */
-col.name {
-width: 10em;
-}
-.action , .value, .arg {
-width: 15em;
-}
-/* Properties for the name column - td:first-child should work in CSS 2.1 avare browsers (tested in Firefox)
-- col.name is against specs but works in IE
-*/
-td:first-child, col.name {
-background-color: rgb(240, 240, 240);
-text-transform: capitalize;
-letter-spacing: 0.1em;
-}
-th { font-style: normal; } /* required for IE */
-
-</style>
-
-
-<title>Robot Test Cases</title><link type="text/css" href="resources/css/testdata.css" rel="stylesheet"></head>
-<body>
-<h1>Robot Test Cases for BuildIn&nbsp;Test Library's Variable Should Exist And&nbsp;Variable Should Not Exist Keywords</h1><br>
-
-
-<table border="1">
-<colgroup span="99"><col class="name"><col class="value" span="4"></colgroup>
-
-<thead>
-<tr>
-<th>Setting</th>
-<th>Value</th>
-<th>Value</th>
-<th>value</th>
-<th>Value</th>
-</tr>
-</thead>
-
-<tbody>
-<tr>
-<td align="undefined" valign="undefined">Document</td>
-<td align="undefined" valign="undefined">Tests for variable should and should not exist related
-functionality in BuiltIn</td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-
-<tr>
-<td>Force Tags</td>
-<td>regression</td>
-<td>jybot</td>
-<td>pybot</td>
-<td></td>
-</tr>
-
-<tr>
-<td>Suite Setup</td>
-<td>Run&nbsp;Tests</td>
-<td></td>
-<td>standard_libraries${/}builtin${/}variable_should_exist.html</td>
-<td></td></tr><tr><td>Resource</td>
-<td>atest_resource.txt</td>
-<td align="undefined" valign="undefined"></td>
-<td align="undefined" valign="undefined"></td>
-<td align="undefined" valign="undefined"></td>
-</tr>
-</tbody>
-</table>
-
-<table border="1">
-<colgroup span="99"><col class="name"><col class="value" span="4"></colgroup>
-
-<thead>
-<tr>
-<th>Variable</th>
-<th>Value</th>
-<th>Value</th>
-<th>Value</th>
-<th>Value</th>
-</tr>
-</thead>
-
-<tbody>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-</tbody>
-</table>
-
-<table border="1">
-<colgroup span="99"><col class="name"><col class="action"><col class="arg" span="3"></colgroup>
-
-<thead>
-<tr>
-<th>Test Case</th>
-<th>Action</th>
-<th>Argument</th>
-<th>Argument</th>
-<th>Argument</th>
-</tr>
-</thead>
-
-<tbody>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<tr>
-<td align="undefined" valign="undefined">Variable Should Exist With
-Default Error Message</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should Exist With
-Default Error Message</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr>
-<td>Variable Should Exist With Given Error Message</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should Exist With
-Given Error Message</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td>Variable Should Exist With&nbsp;Error Message Containing Variables</td><td>Check Test Case</td><td>Variable Should Exist With&nbsp;Error Message Containing Variables</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should Exist&nbsp;Using $name format</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should
-Exist&nbsp;Using $name format</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td>Variable Should Exist&nbsp;Using Escaped format</td><td align="undefined" valign="undefined">Check Test Case</td><td align="undefined" valign="undefined">Variable Should -Exist&nbsp;Using Escaped format</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should Exist With Built In Variables</td>
-<td>Check Test Case</td>
-<td>Variable Should Exist With Built In Variables</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should Exist With Extended Variable Syntax</td>
-<td>Check Test Case</td>
-<td>Variable Should Exist With Extended Variable Syntax</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td>Variable Should Exist With Extended Variable Syntax And Missing
-Object</td><td>Check Test Case</td><td>Variable Should Exist With Extended Variable Syntax And Missing
-Object</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should Exist With Invalid name</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should Exist With
-Invalid name</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td></td><td></td><td></td><td></td><td></td></tr>
-
-
-
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-
-<tr>
-<td align="undefined" valign="undefined">Variable Should Not Exist
-With Default error message</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should Not Exist
-With&nbsp;Default error message</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr>
-<td>Variable Should Not Exist With Given Error Message</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should Not Exist
-With Given Error Message</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td>Variable Should Not Exist With Error Message Containing Variables</td><td>Check Test Case</td><td>Variable Should Not Exist With&nbsp;Error Message Containing Variables</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should Not Exist Using $name format</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should Not
-Exist&nbsp;Using&nbsp;$name format</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td>Variable Should Not Exist&nbsp;Using Escaped format</td><td align="undefined" valign="undefined">Check Test Case</td><td align="undefined" valign="undefined">Variable Should Not -Exist&nbsp;Using Escaped Format</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should Not Exist With Built In Variables</td>
-<td>Check Test Case</td>
-<td>Variable Should Not Exist With Built In Variables</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should&nbsp;Not Exist With Extended Variable
-Syntax</td>
-<td>Check Test Case</td>
-<td>Variable Should Not Exist With Extended Variable Syntax</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td>Variable Should Not Exist With Extended Variable Syntax And
-Missing Object</td><td>Check Test Case</td><td>Variable Should Not Exist With Extended Variable Syntax And -Missing Object</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr>
-<td>Variable Should Not Exist With&nbsp;Invalid name</td>
-<td align="undefined" valign="undefined">Check Test Case</td>
-<td align="undefined" valign="undefined">Variable Should Not Exist
-With&nbsp;Invalid name</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td></td><td></td><td></td><td></td><td></td></tr>
-
-<tr><td class="name"><a name="test_Checking Variable Existence In User Keyword When Variable Name Is Argument">Variable Should Exist In User Keyword When Variable Name Is Argument And Variable Exists</a></td><td>Check Test Case</td><td>${TEST NAME}</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr><td><a name="test_Checking Variable Existence In User Keyword When Variable Name Is Argument">Variable Should Exist In User Keyword Fails When Variable Name Is Argument And Variable Does Not Exists</a></td><td>Check Test Case</td><td>${TEST NAME}</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr><td><a name="test_Checking Variable Existence In User Keyword When Variable Name Is Argument">Variable Should Not Exists In User Keyword When Variable Name Is Argument</a></td><td>Check Test Case</td><td>${TEST NAME}</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr> -<td class="name"><a name="keyword_Check Variable Does Not Exist In UK">Variable Should Exist When Variable Has Variable Like Value</a></td><td>Check Test Case</td><td>${TEST NAME}</td>
-
-
-<td></td>
-<td></td>
-</tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr><td class="name"><a name="keyword_Check Variable Does Not Exist In UK">Variable Should Not Exist Fails When Variable Has Variable Like -Value</a></td><td>Check Test Case</td><td>${TEST NAME}</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-</tbody>
-</table>
-
-<br>
-
-
-<table border="1">
-<colgroup span="99"><col class="name"><col class="action"><col class="arg" span="3"></colgroup>
-
-<thead>
-<tr>
-<th>Keyword</th>
-<th>Action</th>
-<th>Argument</th>
-<th>Argument</th>
-<th>Argument</th>
-<th>Argument</th>
-</tr>
-</thead>
-
-<tbody>
-
-
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td align="undefined" valign="undefined"></td>
-<td></td>
-</tr>
-
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td align="undefined" valign="undefined"></td>
-<td></td>
-</tr>
-</tbody>
-</table>
-</body></html>
=======================================
--- /trunk/atest/testdata/standard_libraries/builtin/variable_should_exist.html Wed Jul 29 01:15:32 2009
+++ /dev/null
@@ -1,700 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head>
-<meta name="generator" content="HTML Tidy, see www.w3.org">
-<style type="text/css">
-html { font-family: Arial,Helvetica,sans-serif;
-background-color: white;
-color: black;
-}
-p { max-width: 60em;
-}
-table { border-collapse: collapse;
-empty-cells: show;
-margin: 1em 0em;
-border: 0.1em solid black;
-}
-th, td {
-border-style: solid;
-border-width: 0.05em 0.1em;
-border-color: black;
-padding: 0.1em 0.2em;
-height: 1.5em;
-}
-th {
-background-color: rgb(192, 192, 192);
-color: black;
-border-width: 0.1em;
-font-weight: bold;
-text-align: center;
-text-transform: capitalize;
-letter-spacing: 0.1em;
-}
-/* Widths of named columns */
-col.name {
-width: 10em;
-}
-.action , .value, .arg {
-width: 15em;
-}
-/* Properties for the name column - td:first-child should work in CSS 2.1 avare browsers (tested in Firefox)
-- col.name is against specs but works in IE
-*/
-td:first-child, col.name {
-background-color: rgb(240, 240, 240);
-text-transform: capitalize;
-letter-spacing: 0.1em;
-}
-th { font-style: normal; } /* required for IE */
-</style><title>Robot Test Cases</title>
-
-<link type="text/css" href="resources/css/testdata.css" rel="stylesheet">
-</head>
-<body>
-<h1>Test Cases for BuildIn's Variable Should Exist
-And&nbsp;Variable Should Not Exist Keywords</h1>
-<br>
-<table border="1">
-<colgroup span="99"><col class="name"><col class="value" span="4"></colgroup>
-<thead><tr>
-<th>Setting</th>
-<th>Value</th>
-<th>Value</th>
-<th>value</th>
-<th>Value</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>Variables</td>
-<td>
-variables_to_verify.py</td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-</tbody>
-</table>
-<br>
-<table border="1">
-<colgroup span="99"><col class="name"><col class="value" span="4"></colgroup>
-<thead><tr>
-<th>Variable</th>
-<th>Value</th>
-<th>Value</th>
-<th>Value</th>
-<th>Value</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>${scalar}</td>
-<td>Hi tellus</td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-</tbody>
-</table>
-<br>
-<table border="1">
-<colgroup span="99"><col class="name"><col class="action"><col class="arg" span="3"></colgroup>
-<thead><tr>
-<th>Test Case</th>
-<th>Action</th>
-<th>Argument</th>
-<th>Argument</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td>Variable Should Exist With
-Default Error Message</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable \${non-existing}
-does not exist</td>
-</tr>
-<tr>
-<td><br>
-</td>
-<td>Variable Should Exist</td>
-<td>${scalar}</td>
-<td><br>
-</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>${non-existing}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Exist With
-Given Error Message</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>My non-default error
-message</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>${scalar}</td>
-<td>This would be the error
-message</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>${non-existing}</td>
-<td>My non-default error
-message</td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Exist With&nbsp;Error Message
-Containing Variables</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Error with vars: ${scalar}</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>${non-existing}</td>
-<td>Error with vars: ${scalar}</td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should
-Exist&nbsp;Using $name format</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable \${non-existing}
-does not exist</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>$scalar</td>
-<td>This would be the error
-message</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>$non-existing</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should
-Exist&nbsp;Using Escaped format</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable \${non-existing}
-does not exist</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${scalar}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${non-existing}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Exist With Built In Variables</td>
-<td>Variable Should Exist</td>
-<td>\${TEMPDIR}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${/}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${10}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${TRUE}</td>
-<td></td>
-</tr>
-<tr>
-<td>#Currently this is not working</td>
-<td>Variable Should Exist</td>
-<td>\${CURDIR}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Exist With Extended Variable Syntax</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable \${length attribute.missing} does not exist</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${length
-attribute.length}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${length attribute.missing}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Exist With Extended Variable Syntax And
-Missing
-Object</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable&nbsp;\${missing.missing} does not exist</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${missing.missing}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Exist With
-Invalid name</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Invalid variable syntax
-'invalid'</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>invalid</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist
-With&nbsp;Default error message</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable&nbsp;\${scalar}
-exists</td>
-</tr>
-<tr>
-<td><br>
-</td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>${non-existing}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>${scalar}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist
-With Given Error Message</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>This is the error
-message</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>${non-existing}</td>
-<td>This should not fail</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>${scalar}</td>
-<td>This is the error
-message</td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist With Error Message Containing
-Variables</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Error with vars: ${scalar} &amp; ${42}</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>${scalar}</td>
-<td>Error with vars: ${scalar} &amp; ${42}</td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist With Built In Variables</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable \${10} exists</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not Exist&nbsp;</td>
-<td>\${10}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist With Extended Variable Syntax</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable \${length attribute.length} exists</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not Exist&nbsp;</td>
-<td>\${length attribute.missing}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not Exist&nbsp;</td>
-<td>\${length attribute.length}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist With Extended Variable Syntax
-And
-Missing Object</td>
-<td>Variable Should Not Exist</td>
-<td>\${missing.missing}</td>
-<td><br>
-</td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist Using $name format</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable&nbsp;\${scalar}
-exists</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>$non-existing</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>$scalar</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not
-Exist&nbsp;Using Escaped format</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Variable&nbsp;\${scalar}
-exists</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>\${non-existing}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>\${scalar}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td>Variable Should Not Exist
-With&nbsp;Invalid name</td>
-<td>[ Document ]</td>
-<td>FAIL</td>
-<td>Invalid variable syntax
-'invalid'</td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Not
-Exist&nbsp;</td>
-<td>invalid</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-
-
-<tr>
-<td class="name"><a name="test_Checking Variable Existence In User Keyword When Variable Name Is Argument">Variable Should Exist In User Keyword When Variable Name Is Argument And Variable Exists</a></td>
-<td>Set Test Variable</td>
-<td>${foo}</td>
-<td>\${bar}</td>
-<td></td>
-</tr>
-<tr>
-<td class="name"></td>
-<td>Check Variable Exists In UK</td>
-<td>\${foo}</td>
-<td></td>
-<td></td>
-</tr>
-
-<tr><td></td><td></td><td></td><td></td><td></td></tr><tr><td><a name="test_Checking Variable Existence In User Keyword When Variable Name Is Argument">Variable Should Exist In User Keyword Fails When Variable Name Is Argument And Variable Does Not Exists</a></td><td>[Documentation]</td><td>FAIL<br></td><td>Variable \${foo} does not exist</td><td></td></tr><tr><td></td><td>Check Variable Exists In UK</td><td>\${foo}</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr><td><a name="test_Checking Variable Existence In User Keyword When Variable Name Is Argument">Variable Should Not Exists In User Keyword When Variable Name Is Argument</a></td><td>[Documentation]</td><td>FAIL<br></td><td>Variable \${foo} exists</td><td></td></tr><tr><td></td><td>Check Variable Does Not Exist In UK</td><td>\${foo}</td><td></td><td></td></tr><tr>
-<td class="name"></td>
-<td>Set Test Variable</td><td>${foo}</td><td>\${bar}</td>
-
-
-<td></td>
-</tr>
-<tr><td></td><td>Check Variable Does Not Exist In UK</td><td>\${foo}</td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td><td></td></tr><tr> -<td class="name"><a name="keyword_Check Variable Does Not Exist In UK">Variable Should Exist When Variable Has Variable Like Value</a></td>
-<td>${variable} =</td>
-<td>Set Variable</td>
-<td>\${value}</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>Variable Should Exist</td>
-<td>\${variable}</td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td class="name"><a name="keyword_Check Variable Does Not Exist In UK">Variable Should Not Exist Fails When Variable Has Variable Like
-Value</a></td>
-<td>[Documentation]</td>
-<td>FAIL</td>
-<td>Variable \${variable} exists<br>
-</td>
-<td></td>
-</tr>
-<tr>
-<td></td>
-<td>${variable} =</td>
-<td>Set Variable</td>
-<td>\${value}</td>
-<td></td>
-</tr>
-<tr>
-<td class="name"></td>
-<td>Variable Should Not Exist</td>
-<td>\${variable}</td>
-<td></td>
-<td></td>
-</tr>
-</tbody>
-</table>
-<br>
-<table border="1">
-<colgroup span="99"><col class="name"><col class="action"><col class="arg" span="3"></colgroup>
-<thead><tr>
-<th>Keyword</th>
-<th>Action</th>
-<th>Argument</th>
-<th>Argument</th>
-<th>Argument</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td class="name"><a name="keyword_Check Variable Exists In UK">Check Variable
-Exists In UK</a></td>
-<td>[Arguments]</td>
-<td>${variable name}</td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td class="name"></td>
-<td>Variable Should Exist</td>
-<td>${variable name}</td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td class="name"></td>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td class="name"><a name="keyword_Check Variable Does Not Exist In UK">Check
-Variable Does Not Exist In UK</a></td>
-<td>[Arguments]</td>
-<td>${variable name}</td>
-<td></td>
-<td></td>
-</tr>
-<tr>
-<td class="name"></td>
-<td>Variable Should Not Exist</td>
-<td>${variable name}</td>
-<td></td>
-<td></td>
-</tr>
-
-
-
-<tr>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-<td></td>
-</tr>
-</tbody>
-</table>
-</body></html>

Reply via email to