Skip to main content

Inspection Story

πŸ” Catching Issues Early​

Alt Text

In software development, every product follows a structured Continuous Integration and Continuous Deployment (CICD) pipeline. From initial problem definition to final deployment, code moves through multiple stages, ensuring quality and reliability.

πŸ“Œ Where do most issues originate?​

If we look at the CICD pipeline, three critical areas often determine a project's success or failure:

  • βœ… Problem Definition:

    • Are we solving the right problem?
    • Are we missing key details that could cause misunderstandings later?
  • βœ… Requirements Analysis:

    • Are the requirements clear, complete, and unambiguous?
    • Do they properly define what the system should do?
  • βœ… Local Development:

    • Is the design structured properly?
    • Does the source code follow best practices and avoid early defects?

These three areasβ€”Problem, Requirements, and Local Developmentβ€”are where inspection plays a key role. By analyzing requirements, reviewing design, and inspecting source code, we can catch defects early, preventing costly errors later in the pipeline.

πŸ›  Why is Inspection Important?​

Unlike testing, which focuses on running the software, inspection is a structured review process that helps detect issues before execution. It applies to:

πŸ”Ή Requirements Inspection: Ensure clarity and consistency.
πŸ”Ή Design Inspection: Review architecture, logic, and flow.
πŸ”Ή Code Inspection: Find syntax issues, bad practices, and logical errors.

By focusing on these areas, we reduce the risk of defects propagating through the CICD pipeline, ensuring a strong foundation for development.




❗ The Problem: Prehistoric Traffic Chaos!​

Alt Text

The Stone Age people have just invented their very first stone carβ€”a groundbreaking achievement! πŸš—πŸ’¨ However, there’s a problem… they are terrible drivers! 🦴πŸ’₯

Before they take their rocky wheels onto the prehistoric roads, they need a way to train safely, avoid disasters, and master the art of driving. Without proper preparation, the roads will be filled with crashes, confusion, and runaway stone cars.

The Tribe Chiefs (the Clients) quickly identified this gapβ€”they saw the chaos coming and realized it was time to evolve. To ensure a safer future, they decided to find a structured solution to train new drivers before they hit the road.




πŸͺ¨ The Rock of Requirements​

Alt Text

The Tribe Chiefs gathered around the legendary Rock of Requirements to write their statement. This was more than just a stone! It was the foundation of every great idea. πŸ—οΈ Whenever the tribe had a new concept or invention, they would engrave it into the sacred rock, believing that once written, their ideas will be closer to became reality.
But things did not go as planned…




❌ Bad Requirements​

Alt Text

❗ Issue #1: Confusing Requirements​

The requirements:
β€œA cool simulation of a vehicle that can do stuff like steer, β€˜go wrummm,’ and be safe.”

It was total gibberish! The requirements were:

  • vague
  • ambiguous
  • open to interpretation
  • without clear definitions

❗ Issue #2: Superficial Developers​

The tribe decided to hire a group of overselling monkey developers πŸ’πŸ’Ό. These so-called "experts" never questioned the requirementsβ€”! They just took them for granted and immediately started the next steps!

  • No requirement validation before development.
  • The developers never challenged unclear requirements.
  • Assumptions were made without proper discussions or clarifications.



❌ Bad Design​

Alt Text

After receiving the poorly written requirements, the overselling monkey developers swung into action. But there was a slight problem...

They completely misunderstood what the tribe actually wanted!

Instead of designing a car simulator for the prehistoric roads, they somehow concluded that the tribe needed a submarine simulator. 🌊🚒

  • The requirements simply said:

β€œA cool simulation of a vehicle that can do stuff like steer, β€˜go wrummm,’ and be safe.”

  • The monkeys thought:

    • β€œSteer?” β†’ Submarines steer! βœ…
    • β€œGo wrummm?” β†’ Submarines make noise! βœ…
    • β€œBe safe?” β†’ Submarines are built to survive underwater! βœ…
  • Conclusion? - They proudly designed a submarine. πŸ†πŸ’

  • No Requirement Validation

  • Over-Engineering the Wrong Problem




❌ Bad Code​

Alt Text

The monkey developers took their flawed design and blindly coded it.

  • No validation, just assumptions.
  • No testing, just "if it compiles, ship it!"
  • No integration, just dumping components on a stick πŸͺ΅ and handing it off.



❌ Bad Product​

Alt Text

Without inspection and testing, the clients got:

  • A submarine simulator when they actually required a car simulator 🏜️🚒
  • A useless, time-consuming, expensive, broken mess!
  • A bad product.



βœ… Good Requirements​

Alt Text

Structured Dev Team​

Realizing their past mistakes, the tribe hires professional Stone++ development team to fix the mess:

  • Buga πŸ› οΈ – Developer
  • Bambucea πŸ” – Tester

Inspecting the Requirements​

Using their Requirements Phase Defects Checklist, they carefully review the original requirement:

Original Requirement:
"We want a cool simulation of a vehicle that can do stuff like steer, β€˜go wrummm,’ be safe."


πŸ“œ RequirementsPhaseDefectsChecklist.pdf: Potential issues​

CodeDefect Description
D_01Requirements are incomplete.
D_02Requirements are missing.
D_03Requirements are incorrect.
D_04Initialization of the system state has not been considered.
D_05The functions have not been defined adequately.
D_06The user needs are inadequately stated.
D_07Comments

πŸ“œ ReviewForm.doc: Identified Issues​

Crt. No.Checked ItemIssueSuggestion
1D_01 – Incomplete"Vehicle" is vagueSpecify CAR
2D_05 – Functions not defined"Go wrummm" unclearDefine acceleration
3D_06 – User needs unclear"Be safe" is ambiguousAdd seat-belt requirement

Refined Requirements​

With clear, testable requirements, they discussed these points with the clients before proceeding further, and they refined the requirements together:

"A simulation of a CAR that:

  • Allows steering
  • Can accelerate
  • Has a seat-belt



βœ… Good Design​

Alt Text

After fixing the requirements, the Stone++ development team moves on to design. However, they discover a major flawβ€”the previous team designed a submarine instead of a car! πŸ›‘πŸ€¦


πŸ“œ DesignPhaseDefectsChecklist.pdf: Potential issues​

CodeDefect Description
D_01Is the overall architecture clear and structured?
D_02Does the design cover all requirements?
D_03Is error handling properly planned?
D_04Have classic design patterns been considered?
D_05Are class names/descriptions meaningful?
D_06Can the architecture handle likely changes?
D_07Comments

πŸ“œ ReviewForm.doc: Identified Issues​

Crt. No.Checked ItemIssueSuggestion
1D_02 – Missing coverageDesign is for a submarine, not a carRedo design for a car
2D_05 – Poor namingComponents named like "Periscope"Use car-related terminology
3D_06 – No flexibilityHardcoded underwater mechanicsMake modular for different vehicles

Refined Design​

With a clear architecture and proper structure, the team finally designs a car simulator, ensuring it follows the actual requirements.




βœ… Good Code​

Alt Text

With a proper design in place, the Stone++ team (Buga & Bambucea) start pair programming inside Buga’s Stone PC. They find a mess of submarine codeβ€”uncompilable, full of logic errors, and completely unusable! πŸš¨πŸ’


πŸ“œ CodingPhaseDefectsChecklist.pdf: Potential Issues​

CodeDefect Description
D_01Decision logic or sequencing is erroneous
D_02Branching is incorrect
D_03Undefined loop terminations
D_04Input/output format errors
D_05Subprogram calls are violated
D_06Confusing use of parameters
D_07Comments

πŸ“œ ReviewForm.doc: Identified Issues​

Crt. No.Checked ItemIssueSuggestion
1D_01 – Bad logicWheels turning like propellersFix movement logic for land travel
2D_02 – Wrong branching"If underwater, reduce speed" conditionRemove submarine logic
3D_06 – Confusing parameters"Depth" used instead of "Speed"Rename variables properly

Refactored Code​

The team modifies and refactors the code, removing submarine logic, fixing errors, and making it functional for a car simulator. Now, it compiles, runs properly, and meets the original requirements! πŸš€




βœ… Good Product​

Alt Text

Unlike the monkey developers, Buga & Bambucea didn’t rush to hand over the product. They knew that more rigorous testing was crucial before release.

  • πŸ›  Extensive testing to ensure functionality
  • πŸ”„ Fixing last-minute defects