:unittest.bannerPingPong

Test cases for the :bannerPingPong function

Description: call:unittest.bannerPingPong
Dependencies: :bannerPingPong
Script:
1.
2.
3.
4.
5.
6.
7.
8.
9.
:unittest.bannerPingPong
:$created 20080321 :$changed 20080321
:$source https://www.dostips.com
set "text=hi    -"
for /l %%C in (1,1,15) do (
    call:bannerPingPong text
    call echo.'%%text%%'
)
EXIT /b
Script Output:
 DOS Script Output
---- :unittest.bannerPingPong - output
'-hi---+'
'--hi--+'
'---hi-+'
'----hi+'
'---hi--'
'--hi---'
'-hi----'
'hi-----'
'-hi---+'
'--hi--+'
'---hi-+'
'----hi+'
'---hi--'
'--hi---'
'-hi----'
----