6
votes
Why don’t they teach these things in school?
Why not, indeed? My experience getting my CS degree was pretty much the same. The reason is that people who teach programming don't program, as far as I can tell. It's not required to teach that st …
6
votes
Unittest causing sys.exit()
Don't try to run unittest.main() from IDLE. It's trying to access sys.argv, and it's getting the args that IDLE was started with. Either run your tests in a different way …
0
votes
Do anyone do test cases for pojos?
Of course it's needed. All the code that has to work has to be tested.
…
