Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Alexandra7a/BugTrackerApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BugTrackerApp

About

This application aims to create a management system for a bug tracking app, where the main actors of the scene are: Admin, Tester, and Developer. All of them come with their own functionalities, permissions, and roles.

Diagrams

The application has a software engineering system core, so it was created keeping each step of development in mind. From the concept stage to the diagram, refined diagrams, and implementation.

  • Conceptual Model
    • Class Diagrams
  • Functional Model
    • Use Case Diagram
  • Interaction Diagrams
    • Communication Diagrams
    • Sequential Diagrams
UseCaseDiagram

Idea

Tester

The tester can create bugs, and these would appear in a list for the developers to be visible.

public enum BugPriorityType {
    blocker, critical, major, minor, trivial;
}
public enum BugStatusType {
    pending, taken, solved;
}
Tester Interface Tester Bug List

Developers

Developers can take a bug from the list to solve, unassign it if they want, and mark it as fixed.

Developer View

Admin

Admin has the power to add and remove employees from the list as they come and go from the company.

Admin Interface

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages