blah blah blah is here! blah blah » Close

0
votes
0 answers

Is it possible to unit test a asp.net mvc view page? Specifically, testing helpers?

Rick_A
761

Many asp.net mvc view page helpers produce HTML output, and this output is dependent upon the routing information like controller and action naming. If I was to rename a controller, or an action, a form helper or link helper may break. i ...

1
votes
1 answers

With a python based web application, how can you test for runtime errors effectively?

Rick_A
761

I am using to asp.net/java based development where you get allot of compile time checking and you can be assurred that things will be 'fine' once you deploy. I am getting exciting about Python (and Ruby), but don't like the idea of publi ...

0
votes
0 answers

Using sql lite with nunit for testing

I am interesting in using sql-lite for unit testing, or integration testing. What do I need to do to setup the database in-memory? I am using nhibernate and I believe many use this approach to test their domain model and CRUD operatio ...

0
votes
0 answers

Guidelines on writing code that can easily be unit testing

Are there any general guidelines on how to write code that can be properly united tested? The goal for me is to able to unit test as much as possible, and to achieve that goal I am sure I have to design my software in such a way for this ...

1
votes
2 answers

Is it really practicle to write unit tests for all your classes/methods?

I haven't done the unit testing thing really but I am curious for those of you with more experience with unit testing, is it really practical to write unit tests for all your classes and methods? Or to be more realistic, should one just ...

Feedback