Apprenticeship Pattern Review #1: The White Belt

Continuing with the story series, the authors chose to talk about a doctor and a family situation, and how the doctor used the white belt technique to help the family solve their problem without forcing the solution on them instead of using the black belt technique which diagnose and give treatment, the doctor helped the … Continue reading Apprenticeship Pattern Review #1: The White Belt

Apprenticeship Patterns

As an assignment for my CS-448 Software Development Capstone class, is reading this book Apprenticeship Patterns by Adewale Oshineye, Dave Hoover. I started reading this book a few days ago and my god it is so interesting and if I have enough time, I would finish this book in a week! yes, it is that … Continue reading Apprenticeship Patterns

LibreFoodPantry

LibreFoodPantry is the project that my team and I will work on the whole semester for the CS-448 capstone class. This project is an open source base project we can contribute to this project and develop parts init and share it with two other Universities. we going to reflect our work on the WSU food … Continue reading LibreFoodPantry

New Semester With New Adventure

The spring 2020 semester started a week early this year, although the winter break was very short I managed to find some time to study java through codecademy, I was practicing programming almost every night so I can catch-up with my team mattes. I'm taking four courses this semester and one of them is my … Continue reading New Semester With New Adventure

Path Testing & Graph

what is Path Testing? It is a way or a method of testing to ensure that all the lines in the program is executed once at least. There is Program Graphs, Decision-to-Decision (DD) Paths, Test Coverage with Program Graphs and DD-Path Graphs Today we will talk about the programming graph and how to draw a … Continue reading Path Testing & Graph

Another Example for the Decision Table Test Design Technique

we can use the following function to create a decision table. int discountcommission(double itemsprice, int items) returns the percent for the Discount Commission , when given the price of the items. Items Discount Commission items < 100%15 ≤ items ≤ 506%51 < items 12% for all sales that's over $1000.00 additional 1% discount will be … Continue reading Another Example for the Decision Table Test Design Technique

Final Project First Blog

This is the first week that we started working on the final project for CS343 Software Constr, Des & Archit, As our final project My team and I decided to make an angular application, the application is called Simulated Operating System it runs on spring boot rest API server. Our application acts like a real … Continue reading Final Project First Blog

Decision Table Test Design Technique

Decision table also known as cause effect table it is one of the black box test design techniques what are that black box design techniques? Black Box Testing is a software testing method in which the internal structure/ design/ implementation of the item being tested is NOT known to the tester. The black box is designed techniques are widely … Continue reading Decision Table Test Design Technique