Posts

Showing posts from December, 2017

Difference between use case and the test case

Use case:   Defined as the path that an user might adopt in order to achieve the goal.  The use case will describe multiple paths that the user can follow within the use case. The use case are prepared in the form of actor and system. Test case: A test case represents one set of inputs that exercises a single use case scenario. For example: Lets consider account creation. An user might fill in all the fields and try creating or might not likely to produce some of the information while creating. such types of path that a user initiates are known as use case and the steps that are being performed by an user for a successful completion of use case are the test case. 

SDLC - Software development life cycle

This is an approach generally adopted for any application development process which is being recognized and accepted globally. It is a set of structured program or task that any organisation would follow for an efficient and productive product, they deliver in each release. The SDLC consist of the following framework as follows, 1.Planning and requirement analysis. 2. Defining the requirement: Developing the SRS (Software requirement specification) from the gathered requirement. 3.Designing the product architecture.: With the complete SRS document a design document specification is prepared which is composed of all the architectural modules even the communication and data flow with in the. 4.Development: The development phase is totally in relationship with the DDS. 5.Testing: In modern SDLC model testing is being implemented over all the stages. 6.Maintenance: This is mainly done for the existing customers once the product is being released and b...