Tagged Questions
0
votes
1answer
28 views
Example of unit testing in sikuli [closed]
Please bear with me as a newbie, who is self-teaching on a number of fronts here. I need some simple examples that would help in learning how to do unit testing in sikuli. Could someone help me out ...
0
votes
1answer
35 views
Is this a correct unit test?
I am trying to get the basics of unit tests and all the tutorials are using huge examples. Also I have written the following code and the test and would like to know if this is correct:
class Foo
{
...
3
votes
1answer
233 views
Is this a clean BDD/MSpec test?
I have a static class Cryptographic that can Encypt and Decrypt a string. I have written the following specs for this:
[Subject(typeof(Cryptographic))]
class When_encrypting_and_decrypting_a_string
{
...
3
votes
2answers
118 views
How much should one TestCase cover?
I've never written a proper test until now, only small programs that I would dispose of after the test succeeded. I was looking through Python's unittest module and tutorials around the web, but ...
5
votes
3answers
432 views
Explain unit testing please
I'm a little confused about unit testing. I see the value in things like automated testing. I think perhaps a good example would be the best way to help me understand. Lets say I have a binary search ...
2
votes
2answers
68 views
Example of application covered with tests
is there sample/open_source application for download that is covered with tests(integration, unit, ...) and could be example how testing should be done? We want to learn our junior programmers how ...
1
vote
4answers
736 views
Where is a python real project to be used as example for the unit-test part?
I'm looking for a python project to use as example to copy the design of the unit test parts.
The project should have these features:
its code is almost fully unit tested
the code is distributed in ...