UML – A Comprehensive Guide

UML – A Comprehensive Guide

What is UML? UML is a standard notation for object-oriented methods, which was created by unifying Object Modeling Techniques. It is used for analysis, design and deployment of systems. The Unified Modeling Language was designed to respond to the needs of businesses to automate the production of software, improve quality and reduce cost and time-to-market. It also provides a formal basis for understanding the modeling language. Why UML? Large enterprise applications must be structured in a way that enables scalability, security, and robust execution under stressful conditions. A well-designed architecture enables code reuse,…continue reading →
Use Case Scenarios as Test Cases

Use Case Scenarios as Test Cases

What is Software Testing? Software testing is the act of checking the artifacts and behavior of the software under test through validation and verification. Software testing also provides an objective, independent view of the software, enabling companies to appreciate and understand the risks of software implementation. Software testing can provide users or sponsors with objective, independent information about software quality and the risk of software failure. One of the main purposes of testing is to detect software faults in order to find and correct defects. Testing cannot determine that a product will work properly…continue reading →
What is Multiplicity

What is Multiplicity

Multiplicity in class diagram should be indicated at each end of the association. This specifies the minimum and maximum number of instances that can be linked. For example, a car has 3 or 4 wheels, but each wheel belongs to exactly one car. Place multiplicity notations near the ends of an association. These symbols indicate the number of instances of one class linked to one instance of the other class.
What is a Package? What is a Package Diagram in UML?

What is a Package? What is a Package Diagram in UML?

Packages in the Unified Modeling Language are used to group elements and provide namespaces for the grouped elements. A package can contain other packages, thus providing a hierarchical organization of packages. Almost all UML elements can be grouped into packages. Thus, classes, objects, use cases, components, nodes, node instances, etc. can be organized into packages, thus making the organization of the myriad elements contained in a real-world UML model manageable.
“Include” and “Extend” Use Cases

“Include” and “Extend” Use Cases

Use case relationships model the dependencies between use cases in the interaction model of the system. Although, independent use cases can adequately represent simpler systems. However, in order to represent complex or large systems, we may need to construct complex use cases with the help of dependencies between use cases. Establishing relationships between use cases allows reuse of those use cases that need to be defined over and over again, which reduces developer effort.
The Four Types of Relationship in Use Case Diagram

The Four Types of Relationship in Use Case Diagram

In UML, relationships are connections between model elements. Use cases are also connected to each other in different kinds of relationships. The relationship between two use cases basically models the dependencies between two use cases. By reusing existing use cases using different types of relationships, the overall effort required to develop the system is reduced. Use case diagrams show use cases, actors, and the relationships between them. For example, the relationship between an actor and a use case illustrates that the actor can use a certain functionality of the business system.
Everything you need to know about sequence diagrams

Everything you need to know about sequence diagrams

UML Sequence Diagrams are interaction diagrams that detail how operations are carried out. They capture the interaction between objects in the context of a collaboration. Sequence Diagrams are time focus and they show the order of the interaction visually by using the vertical axis of the diagram to represent time what messages are sent and when.
State Diagram – A Quick Tutorial

State Diagram – A Quick Tutorial

What is a UML state diagram? A state diagram (called in the UML 1.x specification) is a diagram showing a state machine and is called a state machine diagram in UML 2.x. The so-called state machine is a behavior that describes the various states and state transitions of an object in its life cycle. A state diagram is one of the 14 UML diagrams used for modeling in UML 2.0.   It defines the different states of an object during its lifecycle, which change in response to events. State diagrams are useful for…continue reading →
User Story is Compatible with use case?

User Story is Compatible with use case?

Googling around the web, the Agile Sages considers use cases and user stories are two different things: Mike Cohn: User stories aren’t use cases Alistair Cockburn: A user story is to a use case as a gazelle is to a gazebo Extreme Programming.org: User stories serve the same purpose as use cases but are not the same. Use case driven approach was one of the hottest technique for requirement capturing and some people now consider it is a kind of outdated, old style technique that associated with a lot of problem that causing your team NOT…continue reading →