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

📄 debuggingreport.txt

📁 ssd3部分quiz、exercise、exam的参考答案
💻 TXT
字号:
---------------------------------------------------------------------------
Bug #1


Description of the bug:
Test case 1: get methods failed !!!

Lines of source code that contain the bug:
86	int numberOfA = 0;
87	int numberOfT = 0;
88	int numberOfC = 0;
89	int numberOfG = 0;


Lines of the fixed code:
86	numberOfA = 0;
87	numberOfT = 0;
88	numberOfC = 0;
89	numberOfG = 0;

---------------------------------------------------------------------------
Bug #2


Description of the bug:
Test case4: method twoConsecutive passed

Lines of source code that contain the bug:
172	if ((firstNucleotide == input) || (secondNucleotide == input)) 
	

Lines of the fixed code:
172	if ((firstNucleotide == input) && (secondNucleotide == input)) 


---------------------------------------------------------------------------
Bug #3


Description of the bug:
Test case3: method twoConsecutive passed

Lines of source code that contain the bug:
165	while (index < sequence.length() - 1) 


Lines of the fixed code:
165	while (index < sequence.length()) 

⌨️ 快捷键说明

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