⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testa13e.sh

📁 N元组统计程序源代码
💻 SH
字号:
################################################################################				UNIT TEST A13e FOR kocos.pl################################################################################       Test A13e  -    Checks if the program displays right message #			for 5th order co-occurrences #			co-occurrences when data contains puctuations #	Input	-	test-A13.count#	Output	-	test-A13e.reqdecho "UNIT Test A13e -";echo "		For kth order co-occurrence program kocos.pl";echo "Input - 	Source file from test-A13.count";echo "Output - 	Destination file from test-A13e.reqd";echo "Test -    	Checks if the program displays right message";echo "		for 5th order co-occurrences when data contaings puctuations"; #=============================================================================#				INPUT#=============================================================================set TestInput="test-A13.count";set Actual="test-A13e.reqd";#=============================================================================#				RUN THE PROGRAM#============================================================================= kocos.pl --literal mahanta --order 5 $TestInput > test-A13e1.output kocos.pl --regex test-A13.regex --order 5 $TestInput > test-A13e2.output#=============================================================================#				SORT THE RESULTS AND COMPARE#=============================================================================sort test-A13e1.output > t1sort $Actual > t2diff -w t1 t2 > variance1sort test-A13e2.output > t1diff -w t1 t2 > variance2#=============================================================================#				RESULTS OF TESTA13e#=============================================================================if(-z variance1 && -z variance2) then        echo "STATUS : 	OK Test Results Match.....";else	echo "STATUS : 	ERROR Test Results don't Match....";        echo "		When Tested for --literal mahanta ";        cat variance1	echo "		When Tested for --regex test-A13.regex";        cat variance2endifecho ""/bin/rm -f t1 t2 variance1 variance2#############################################################################

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -