testcase-001.bat
来自「Java编写后缀表达式计算器, 用于输出生成后缀表达式, 程序包含完整的Docu」· Batch 代码 · 共 23 行
BAT
23 行
set classpath=%classpath%;.
set path%path%;C:\Program Files\Java\jdk1.6.0\bin
@echo off
@echo Running Testcase 001: a correct input from DBv2.
@echo ==============================================
@echo The input is:
type testcases\tc-001.infix
@echo ----------------------------------------------
cd bin
rem : Run the testcase with input direction
java postfix.Postfix < ..\testcases\tc-001.infix
rem : Compare the expected output
@echo ----------------------------------------------
@echo The output should be:
type ..\testcases\tc-001.postfix
cd ..
@echo ==============================================
pause
@echo on
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?