Friday, May 17, 2013

About database mining concept: Test Driven Development.....................

About database mining concept: Test Driven Development.....................: T est Driven Development   (TDD)   is a very crucial part of software development phase. In General we heard lots about TDD implementati...

Test Driven Development.....................



Test Driven Development (TDD) is a very crucial part of software development phase. In General we heard lots about TDD implementation through java and other languages in UI .

As the name suggest Test Driven Development means that development which is derived from Test. It means TDD is a part of software development. When we are design a functionality or module and write a source code to implement the functionality and after that compile and run those source code that is working or not. These types of task are done by every developer. Now here Test driven comes into picture and idea behind this Test Driven is task which is done by every developer manually each and every time that could be automated if it is possible. And it makes sense because it saves much development time and effort and time is valuable for any business. But how this TDD will reduce time...? 

In general case we are doing lots of repetitive task in our development time now if we think about how could we automate these things that can possible to reuse these things in our next development.
In our development phase if we can find the way where we can catch then null pointer and divided by zero these types of error easily with one click and automated way that can reused.
         
Next phase we will discussed about TDD in database.