As I see many times, a self-executing anonymous function is used to contain entire libraries. How can these libraries be tested, if e.g. QUnit cannot access anything inside the anonymous function wrapper?
|
feedback
|
|
You just do all your tests on that "public" function, see for example the official jQuery core test suite Fragment:
You don't need to access private functions to test public behaviour | |||
|
feedback
|
|
I agree that you don't want to perform Backdoor Manipulation by finding sneaky ways to discretely test private methods. However, as you pointed out, leagues upon leagues of web applications were written as one gigantic self-executing ball of mud that lacks any naming or public API. That's a completely different problem that one is unlikely to encounter in many other tech stacks. One of the huge values of TDD'ing JavaScript for the web is that it forces you to write JavaScript that's usable by at least two parties: your web app + your unit test. I've played this legacy rescue game a few times with Jasmine:
| |||
|
feedback
|