开发者

problem of testing file worker in java

I have a question which is described below:

What problems would arise for testing a Java class which counts number of words in a file?

The function's signature is bel开发者_运维技巧ow:

public int wordCount(String filename)

Well, this is a junit testing question.

If you know the problem, what is the solution of that?


So your question is what to test for? If yes, I'd say you should check if the definition of "word" is implemented correctly (e.g. is "stack-overflow" one word or two), are new lines handled correctly, are numbers counted as words (e.g. difference between "8" and "eight"), are (groups of special) characters (e.g. a hyphen) counted correctly.

Additionally, you should test whether the method returns the expected value (or exception) if the file does not exist.

This should be a good starting point.


To sfussenegger's list, I'd add the file handling checks: does the method respond correctly to files not found (including null filename), or lacking read permission?

Also, to sfussenegger's correctness list, I'd add whether duplicates count and case sensitivity rules, as well.

Of course, all of this requires that you know how the method is supposed to behave for all of these specifics. It's easy to tell someone to "go count words", but there are subtleties to that assignment.

Which is one of the big benefits of writing a good set of unit tests.


This really sounds like a task for FIT: Framework for Integrated Test. It's an acceptance testing framework that works with ant and JUnit.

One docent of mine did such a task and used this framework. It allows you to write a whole bunch of test cases within one html/wiki table. FIT will interpret each line as a parameter set for the function under test and checks the output.

For example:

problem of testing file worker in java

This table displays the result of three test cases. Two passed, one failed.

You can use fit if you write sentences and define the number of words in your table. With FIT, they're executed and the result is displayed in a new table.

For further information, please read Introduction to FIT.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜