我对TDD很新。我看到一些文档说关于阳性测试,阴性测试,边界测试等。任何人都可以告诉我阳性测试和阴性测试之间的区别吗?是否有任何关于不同类型测试的参考? (我不是在找书)
答案 0 :(得分:23)
正面测试 - 通过提供有效的测试系统 数据
否定测试 - 通过提供无效来测试系统 数据
例如,应用程序包含一个文本框并按照 用户的要求文本框只能接受 Strings.By只提供String作为输入数据 文本框&检查其是否正常工作 意味着它是积极的测试。 如果给出除String之外的输入意味着它是负数 测试..
否定测试可提高应用程序的测试覆盖率。同时使用消极和积极的测试方法,您可以使用任何可能的输入数据(有效和无效)测试您的应用程序,并可以帮助您使应用程序更加稳定和可靠。
请参阅Glossary以了解不同类型的测试
答案 1 :(得分:11)
在单元测试方面(这是TDD的重点),这个概念可以简单描述如下:
答案 2 :(得分:1)
否定测试检查系统不会执行不应该执行的操作。 示例:如果只有经理可以批准新笔记本电脑的请求,则负面测试显示“常规”用户无法批准该请求。
答案 3 :(得分:1)
===============================================================
| Positive Test Case | Negative Test Case |
+==============================+==============================+
| test by valid/expected data | test by invalid data |
+------------------------------+------------------------------+
| check if the function does | check if the function does |
| that it should do | not that it should not do |
+------------------------------+------------------------------+
| examine general behaviors of | examine if the function |
| the function | is fault proof (does not |
| | crush/mis-response in bad |
| | situations) |
===============================+===============================
一些简单的示例将帮助您更清楚地了解它们之间的区别。
候选功能:
public boolean deleteFile(String filePath) {
// try to delete the file; and
// return true for success, false for failure
}
正测试用例-由于此功能需要文件路径,正测试用例将包含所有可能的有效文件路径:
public void deleteFile_forAbsoluteFilePath_P() {
String filePath = "D:\\Temp\\file.txt";
// create file, call deleteFile(), and check if really deleted
}
public void deleteFile_forRelativeFilePath_P() {
String filePath = "file.txt";
// create file, call deleteFile(), and check if really deleted
}
public void deleteFile_forNonExistingFilePath_P() {
String filePath = "wHSyY#zP_04l.txt";
// call deleteFile(), and check if false is returned
}
public void deleteFile_forSymlinkedFilePath_P() {
String filePath = "D:\\Temp\\symlink\\dir\\file.txt";
// create file, create symlink, delete file, and
// check if really deleted
}
public void deleteFile_forUndeletableFile_P() {
String filePath = "file.bin";
// create file, restrict delete permission, call deleteFile(), and
// check if does not crash and returns false
}
否定测试用例-任何可以发送到该功能且无效的东西都将处于否定测试用例:
public void deleteFile_forAlreadyDeletedFile_N() {
String filePath = "file.bin";
// create file, call deleteFile() twice, and
// for second time check if does not crash and returns false
}
public void deleteFile_forDirectoryPath_N() {
String dirPath = "D:\\Temp\\dir";
// create directory, call deleteFile(), and check if false is returned
}
public void deleteFile_forSymlinkedDirectoryPath_N() {
String symlink = "D:\\Temp\\symlink";
// create symlink, call deleteFile(), and check if false is returned
}
public void deleteFile_forNullString_N() {
String filePath = NULL;
// call deleteFile(), and check if does not crash and returns false
}
public void deleteFile_forCorruptedFilePath_N() {
String filePath = "D:\\Tem¡¿ÿ¿";
// call deleteFile(), and check if does not crash and returns false
}
单元测试还可以作为功能的实时文档。因此,负测试用例应该只包含预期的例外条件,而不是将所有可能的参数扔给函数。