Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 13

MID PROJECT REVIEW

Under the guidance of Presented by:--


MRS. S.S.SARMILA
ASST. PROFESSOR P. SARAN DEEPAK
DEPARTMENT OF BCA III- BCA B
 Introduction
 Technical Domain
 Modules of Project
 The objective of the bug tracking system is to
enable the software development team and
testing team to organize and manage the
bugs in a particular project/product.
 While developers of programs can
accomplish "manual" bug tracking via
email, it would be a nightmare for
developers of software to attempt this
approach.
 This is where developers can benefit most
from bug tracking systems.
 A bug tracking system is a software
application that is designed to help quality
assurance and programmers keep track of
reported software bugs in their work.
 Bug tracking is a methodology used by
software developers to collect reports of
defects or "bugs" in software programs.
 Administrator
 Project Manager
 Team Leader
 Software Engineer
 Tester
 Developer
Create

Delete
User
Import
Password
Login-Admin
Project Create
Delete
Start page
Project Details

Login-General

Main page-
General
access Add Defect
 Interface: ASP. net

 Language: C#

 Scripting Language: Java Script

 Data Connectivity: ADO .NET

 RDBMS: SQL Server 2000


 INTERFACE (FRONTEND)
 DATABASE (BACKEND)

A major component of a bug


tracking system is a database that records
facts about known bugs. Facts include the
time a bug was reported, its severity, the
erroneous program behavior, and the
identity of the person who reported it and
any programmers who may be working on
fixing it.
1. Administrator
 Create ,delete or import User profiles.
 Create and delete Project details.
 Allow password changes.
 Can Grant permissions.

2.General User
 Contain developer, tester, team leader,
project manager.
 Can view all defect details but cannot edit the
existing bug report.
 Add/log a new bug.
1. Login_table
2. User_info_table
3. Project_info_table
4. Defect_table
 #include <stdio.h> printf("2. CHANGE THE STATUS OF THE BUG\n");
           printf("3. GET BUG REPORT\n4. EXIT");
        printf("\n\n ENTER YOUR CHOICE:");
 // Driver Code  
 void main()         scanf("%d", &number);
 {  
        // Using switch to go case by case
     printf("***************");
        switch (number) {
     printf("BUG TRACKING SYSTEM");         case 1:
     printf("***************\n");             id++;
    
            // Creating a New Bug
     int number, i = 1;             filebug(id);
               break;
     // Id initialised to 0         case 2:
 
    int id = 0;
            // Change Status of Bug
               changestatus();
     // while loop to run             break;
     while (i != 0) {         case 3:
 
         printf("\n1. FILE A NEW BUG\n");             // Report the Bug
               report()

You might also like