-
I'm pretty new to Test Driven Development and it's the first time I worked on an environment that adheres to its practices. Something I learned today is Write the Test first before you make any changes . This ensures that you know what you're writing your code against, and you make your solution...
-
I just want to spread that word that there is a lightweight framework for running EJB's outside a container. You could use it together with JUnit so unit testing EJB's becomes easier. The current project that I'm working on uses this and though right now. I don't have a concrete example...
-
Here is my answer to Keith's Bible App challenge . I know the deadline has already passed but I want to do it the TDD way, so here it is. Again, the requirements. The user should be able to search for books based on a selected Testament (Old and New). The user should be able to see the contents of...
-
Welcome to part two of our series on building a Windows application using test-driven development (TDD). In the previous article we drove the design of our entity classes and data access layer by means of unit tests. The unit tests acted more as specifications for the system rather than tests, since...
-
In a hot discussion thread in msforums.ph about the value of unit testing and adopting test-driven development (TDD), a suggestion was made to illustrate how TDD is used in creating a simple application, specifically Keith's October code challenge . In response to that, I've decided to write...
-
In my office, TDD is a new methodology that we've just began adopting. My senior wrote a TestCase class before he left the company. Thanks to him, I got some sample codes to study. After baby sitting, I decided to open my computer and fire up netbeans. We're using RAD at my work btw, I could...
-
A 32-min intro on unit testing. Watch it. Four stars.
-
I can't stop but smile at what I've written in this forum thread . A decade ago, I am constantly having this similar debate with my managers, project leader, team leader, quality engineers, etc. about the merits of unit testing. As I was still inexperienced then, I am not really in favor of unit...
-
JP Hamilton has posted a brief blog post on how he unit tests WinForms . Looks nifty, especially if you use a pattern like Model-View-Presenter for your forms. His rationale is that if you keep on testing only the presenter and mocking out the view in your unit tests, your forms code still gets zero...
-
Here's what Steven Harman has found out in a recent trip: TDD is Gaining Some Ground somewhere... [Taken by Steven Harman at Crowne Plaza front desk in West Michigan]
-
Test Driven Development for the Masses by Andre John Tamayo Cruz About the Speaker Andre John Cruz aka cruizer is a Microsoft MVP for Visual C# and an Administrator for PHPUGPH.com. His day job is an Application Developer for Barclays Capital Singapore. He is an avid FOSS enthusiast, and also an active...
-
The previous incarnation of that Microsoft article was heavily panned by critics and in a rare move, Microsoft actually pulled it out of its developer web site. I didn't realise it but Microsoft actually replaced it with one written by Jeffrey Palermo -- http://msdn2.microsoft.com/en-us/library/aa730844...
-
Ubraa my 1st open source project is conceived at the PHPUGPH forum. ============== SUMMARY PAGE =================== Project Name: PMS Project (Code Release Name: UBRAA) Description: PHP based project management software Technical Data: -Built on Zend Framework 1.0.0 -Uses jQuery library for UI interactivity...
-
This InfoQ link on pipelined CI got my attention because it was something that I can relate to. The project we're working on used to build on our CruiseControl.NET build server in only three minutes; now it's taking more than 18 minutes to complete. And it's a dual-core 2 GB machine at that...
-
Have you heard of the term cyclomatic complexity ? I had my first encounter with it in the current project we're doing at work. One of the senior guys in our project set up our build server, with CruiseControl.NET invoking a tool called SourceMonitor and analyzing source code complexity. Basically...