vote up 0 vote down star

In reference to this answer to a Stack Overflow question: what is "bench-testing code"? (Not to be confused with benchmark.)

Presumably it is some kind of code that embedded inside comments and used in the context of QA/testing. But what is it exactly?

flag

76% accept rate

3 Answers

vote up 1 vote down check

In short, it's a synonym for unit test code.

I believe it originates from hardware design:

A hardware developer would create a device, then plug that device into a "test bench", which would then run sample inputs and verify that the output on the pins of the device was correct. It was basically the first (automated?) unit testing.

Flash forward to today, it's a synonym for something that performs unit tests. A TestFixture class in Nunit is analagous to a test bench: You "plug" your class into the TestFixture, and it does its thing similar to how a physical test bench works for hardware.

link|flag
That makes sense. Could the comments part be a reference to Python's "doctest"? – Peter Mortensen Sep 4 at 21:50
Looking at it for just a few seconds, I believe Python's doctest is an implementation of a programming language feature called a "contract". A contract consists of statements of what inputs a method will accept and what output will be guaranteed if those inuputs are valid. They're declarative unit tests (and they'll be coming to C# in .NET 4.0 last I heard). – Josh Kodroff Sep 5 at 2:16
vote up 0 vote down

"bench testing" was used a lot in the electronics industry. It refers to testing a circuit on the work bench.

link|flag
vote up 0 vote down

"Bench testing code" simply tests the functionality of a section of code.

Placing the actual "bench testing code" in comments provides a much more detailed description of what testing was actually performed.

In my opinion, code should only have a reference (filename) of the "bench testing code" which is maintained elsewhere.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.