Lasse Koskela on the importance of test code

Lasse Koskela on the importance of test code

date:Mar 18, 2011

Lasse Koskela, the author of Test Driven: Practical TDD and Acceptance TDD for Java Developers, talks with executive editor Jan Stafford about the importance of test code just after he presented the technical session "Test Smells in Your Code Base" at TheServerSide Java Symposium.


Read the full transcript from this video below:  

Lasse Koskela on the importance of test code

Jan Stafford: Hi, this is Jan Stafford, Executive Editor of The Service
Side, behind the camera. And?

Lasse Koskela: Lasse Koskela

Jan Stafford : You just did a session on test code, and tell me, what do
you think are some of the most common problems people have in perfecting
their test code?

Lasse Koskela: So, well starting from not having tests of course, I think
that's the biggest problem I see but with code bases that have tests, I
think, the biggest problem is generally that people don't take care of
their tests. You write them once and then you leave them until they break,
and then you fix them anyway you can. I think that's the biggest problem,
so people don't really nurture their test codes.

Jan Stafford: So do you think that there's a perception that test code is not
as important as production code? And what might be wrong with that
assumption?

Lasse Koskela: I think people definitely behave that way in general. So what
happens is, you don't pay attention to the test. It's tedious, and whatever
the reason originally was, it's a vicious cycle, so it gets worse and worse
over time. I think at some point people might even use the excuse that test
code isn't as important. I think that it definitely is as important as
production code, because the test code basically documents and verifies
your code words. So if you leave it for half a year, come back, how do you know
it's correct, how do you know its working? It's a lot of effort to test
manually and it's so much easier if you develop your tests and code at the
same time, using the same methods, using the same design principles and
good practices. It makes it definitely worth it.

Jan Stafford: Thank you.

Lasse Koskela: Thank you.

More on Open source Java

  • canderson

    Apache Camel news from JavaOne 2011

    VIDEO - Apache Camel, the open source integration framework, is enjoying an upward swing in popularity as the community prepares for the upcoming release of Camel 3.

    ( Oct 12, 2011 )

  • canderson

    Does Open Source Mean Superior Software Quality?

    VIDEO - James Strachan, the man who believes he invented Groovy, presented a lightninground session at TheServerSide Java Symposium to speak about FuseSource and Open Source Software. In that discussion, he asserts that there are reasons why open source projects may in fact be higher in quality than software one might purchase from a vendor.

    ( May 10, 2011 )

  • canderson

    Jonathan Fullam on Test-Driven Development

    VIDEO - Jonathan Fullam talks about the benefits of test driven development, the connection between Java and test-driven design, and how test driven design helps in the bug-fixing stage of testing.

    ( Mar 18, 2011 )

  • Tomcat performance optimization through consolidated log file handlers

    Tip - By default Tomcat uses several log file handlers, but performance can easily be optimized by configuring the server to use only one.

    ( May 05, 2013 )

  • Why productivity logging is the key to software development time management

    Feature - The key to success as a software consultant is using a productivity log that can demonstrate how much time and effort has been put into a project, while also explaining away non-productive time consuming activities.

    ( Apr 27, 2013 )

  • Lacking NoSQL standards more dangerous than proprietary vendor lock-in?

    Feature - While many NoSQL solutions are open source, the lack of standards means any organization embracing a given solution may never have the ability to easily change to another competing solution.

    ( Apr 23, 2013 )

  • Troubleshooting Java Code: Log or Re-Throw, but Don't Do Both

    Tip - When building Java applications, proper logging and proper exception handling go hand in hand. But there are times when putting the two together is just plain wrong. This article explains why rethrowing an exception and logging it at the same time is a bad thing to do.

    ( Mar 06, 2013 )

  • How Headless Android is Impacting Embedded Systems Development

    Feature - Given the fact that Android is targetted towards the smartphone market, you wouldn't expect any significant interest in Android from the embedded market. However, making Android 'headless', and working with it on an embedded device has a variety of compelling use cases, and accordingly it is becomming ever more popular.

    ( Mar 06, 2013 )