I've recently decided to start using some light unit testing to see if it adds any value to our project, but I'm having trouble finding documentation for SimplyVBUnit. Any suggestions?
Asked
Active
Viewed 7,270 times
3 Answers
3
There's some discussion of VB6 unit testing in this question, with Gutzofter's mini tutorial on SimplyVBUnit.
2
Have you considered collecting test coverage? This determines what part of your code has run, often as exercised by your unit tests. To do this, you need a test coverage data collection tool, as well as your tests.
EDIT: The only VB6 test coverage tool I know is http://www.aivosto.com/vbwatch.html Aivisto seems to have a generally good reputation for thier VB tools.

Ira Baxter
- 93,541
- 22
- 172
- 341
-
1Hmm. Looks like a software testing methodology that you're recommending, when I was asking about a specific unit testing framework. That said, I'm specifically looking for automated tools to add value at little expense to our QA side. Could you suggest a good vb 6 code automated coverage tool? – bitcycle Oct 12 '09 at 18:41
-
You were looking for something that adds value. Unit tests are good. IMHO, test coverage is an enormous value add, because it tells if your tests (unit, integration, system, interactive) are doing you any serious amount of good. Thanks for the ding :-( – Ira Baxter Oct 12 '09 at 19:36
-
I'll cancel out that ding fer ya! – jjb Oct 12 '09 at 19:50
-
1While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Neeku Oct 03 '14 at 20:41
-
@IraBaxter i'm surprised to see this comment from someone with 49k rep! My comment is an automatically generated one after reviewing the flagged posts queue, reported by someone else. – Neeku Oct 03 '14 at 22:42
-
@Neeku: Don't assume that everybody at SO, or even all high rep users, agrees with all of SO policies or the zealousness with which some people enforce them. And this particular complaint really seemed unwarranted. I'm not interested in discussion; I fixed it as much as practical. – Ira Baxter Oct 03 '14 at 23:02
-
@neeku Ira is in the right this time, as I think you'll see if you read the edited answer carefully. Automatic moderation tools are good servants but poor masters. – MarkJ Oct 04 '14 at 10:43
2
If you downloaded the binary installer for SimplyVBUnit it comes with a couple of example projects in the installation folder. Both the source code zip file and binary installer include a Help.chm showing many of the classes and how to apply them in your tests.

Kelly Ethridge
- 1,669
- 1
- 11
- 12
-
Yeah, I was wondering if anyone had created docs for it. I did view the help, and that was helpful (no pun intended) to some degree. And, since you're the author and you advised to review the help, it seems that the answer is no: there is not any additional documentation other than the included example projects and compiled help file. – bitcycle Oct 12 '09 at 22:37
-
What kind of documentation are you looking for? Is it specific to SimplyVBUnit or more about unit testing in general? – Kelly Ethridge Oct 13 '09 at 00:43