Difference between revisions of "Template:Collapsible test case/doc"

From blackwiki
Jump to navigation Jump to search
imported>Zyxw
(add categories; same as Template:Testcase table)
imported>Vanisaac
m (→‎See also: clean up per WP:CAT#T and WP:AWBREQ add template:Sandbox other)
 
(6 intermediate revisions by 2 users not shown)
Line 28: Line 28:
 
== Examples ==
 
== Examples ==
  
<pre>
+
=== Compare template and sandbox (default format) ===
 +
 
 +
;Usage
 +
<pre style="white-space:pre-wrap; overflow:auto; background-color:#eee;">
 
{{collapsible test case
 
{{collapsible test case
 
| _template1 = ombox
 
| _template1 = ombox
Line 35: Line 38:
 
</pre>
 
</pre>
  
 +
;Output
 
{{collapsible test case
 
{{collapsible test case
 
| _template1 = ombox
 
| _template1 = ombox
Line 40: Line 44:
 
}}
 
}}
  
<pre>
+
=== Compare two different templates (default format) ===
 +
 
 +
;Usage
 +
<pre style="white-space:pre-wrap; overflow:auto; background-color:#eee;">
 
{{collapsible test case
 
{{collapsible test case
 
| _template1 = ombox
 
| _template1 = ombox
Line 48: Line 55:
 
</pre>
 
</pre>
  
 +
;Output
 
{{collapsible test case
 
{{collapsible test case
 
| _template1 = ombox
 
| _template1 = ombox
Line 54: Line 62:
 
}}
 
}}
  
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
+
=== Compare template and sandbox (rows format) ===
 +
 
 +
;Usage
 +
<pre style="white-space:pre-wrap; overflow:auto; background-color:#eee;">
 +
{{collapsible test case
 +
| _format = rows
 +
| _template1 = ombox
 +
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
 +
}}
 +
</pre>
 +
 
 +
;Output
 +
{{collapsible test case
 +
| _format = rows
 +
| _template1 = ombox
 +
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
 +
}}
 +
 
 +
=== Compare template and sandbox (columns format) ===
 +
 
 +
;Usage
 +
<pre style="white-space:pre-wrap; overflow:auto; background-color:#eee;">
 +
{{collapsible test case
 +
| _format = columns
 +
| _template1 = ombox
 +
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
 +
}}
 +
</pre>
 +
 
 +
;Output
 +
{{collapsible test case
 +
| _format = columns
 +
| _template1 = ombox
 +
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
 +
}}
 +
 
 +
=== Compare template and sandbox (inline format, show code) ===
 +
 
 +
;Usage
 +
<pre style="white-space:pre-wrap; overflow:auto; background-color:#eee;">
 +
{{collapsible test case
 +
| _format = inline
 +
| _showcode = yes
 +
| _template1 = ombox
 +
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
 +
}}
 +
</pre>
 +
 
 +
;Output
 +
{{collapsible test case
 +
| _format = inline
 +
| _showcode = yes
 +
| _template1 = ombox
 +
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
 +
}}
 +
 
 +
== See also ==
 +
Templates invoking [[Module:Template test case]]:
 +
* [[Template:Test case]] – a generalised test case template
 +
* [[Template:Testcase rows]] – for a table of test cases arranged in rows
 +
* [[Template:Testcase table]] – for a table of test cases arranged in columns
 +
* [[Template:Inline test case]] – for test cases with small invocations and small output
 +
* [[Template:Test case nowiki]] – for test cases from template invocations enclosed in {{tag|nowiki}} tags
 +
* [[Template:Nowiki template demo]] – for use in template documentation
 +
 
 +
<includeonly>{{Sandbox other||
 
<!-- Categories below this line, please; interwikis at Wikidata -->
 
<!-- Categories below this line, please; interwikis at Wikidata -->
 
[[Category:Template test cases| ]]
 
[[Category:Template test cases| ]]
 
[[Category:Template namespace templates]]
 
[[Category:Template namespace templates]]
 
}}</includeonly>
 
}}</includeonly>

Latest revision as of 15:36, 24 April 2020

This template creates a test case of two or more templates contained in a collapsible box. If the outputs of all the templates is the same, the box is collapsed, but if any of them differ from each other the box is left uncollapsed. There are a variety of different formats and options that can be used.

Each template is called with the same parameters. All parameters passed to this template are passed through to the test-case templates, with the exception of parameters starting with an underscore character ("_"), which are reserved for internal use.

If no templates are specified explicitly, the module uses the base page of the current page as the first template, and its /sandbox subpage as the second template. If only one template is specified explicitly, its /sandbox subpage is used as the second template.

Usage

Basic syntax

{{collapsible test case
| [param1] = [value1]
| [param2] = [value2]
| [param3] = [value3]
...
}}

Full syntax

For the full syntax, see Template:Test case. This template is equivalent to that one with the |_collapsible= parameter set to "yes" by default.

Examples

Compare template and sandbox (default format)

Usage
{{collapsible test case
| _template1 = ombox
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
}}
Output
{{ombox}}

{{ombox}}

{{ombox/sandbox}}

Error: expandTemplate: template "ombox/sandbox" does not exist

Compare two different templates (default format)

Usage
{{collapsible test case
| _template1 = ombox
| _template2 = tmbox
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
}}
Output
{{ombox}}

{{ombox}}

{{tmbox}}

Compare template and sandbox (rows format)

Usage
{{collapsible test case
| _format = rows
| _template1 = ombox
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
}}
Output
{{ombox}}
{{ombox}}
{{ombox/sandbox}}
Error: expandTemplate: template "ombox/sandbox" does not exist

Compare template and sandbox (columns format)

Usage
{{collapsible test case
| _format = columns
| _template1 = ombox
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
}}
Output
{{ombox}}
Side by side comparison
{{ombox}}{{ombox/sandbox}}
Error: expandTemplate: template "ombox/sandbox" does not exist

Compare template and sandbox (inline format, show code)

Usage
{{collapsible test case
| _format = inline
| _showcode = yes
| _template1 = ombox
| text = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.
}}
Output
{{ombox}}
  • {{ombox|text=Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.}}
  • {{ombox/sandbox|text=Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique sagittis cursus.}}Error: expandTemplate: template "ombox/sandbox" does not exist

See also

Templates invoking Module:Template test case: