Equivalence Class Partitioning
In this tutorial, we will learn about Equivalence Class Partitioning. In the approach, the domain of test input values to a software application is partitioned into a set of equivalence
In this tutorial, we will learn about Equivalence Class Partitioning. In the approach, the domain of test input values to a software application is partitioned into a set of equivalence
Create Quickstart Maven Project in Eclipse IDE In this tutorial, we will create a Quickstart Maven project from the archetype using Eclipse IDE. We can use this approach to create a Maven project with a basic structure to get started with the Maven project. Project created using Maven archetype would be easier for us to […]
In this tutorial, we will learn about the black box testing. This testing type is named so because the software program, from the eyes of the tester, is like a black box, inside which
Specify Java version in a Maven Project. In this post, we will learn how to specify the Java version in the Maven pom.xml file. This is very useful when you are upgrading the Maven project to higher version of Java. Fixing errors during building Maven project. An example of one such error is shown. Sample […]
Understanding a Simple C Program In this post, we will understand a simple C program to add two numbers and display the output of the sum. C program shown below: #include<stdio.h> /* Program to calculate * sum of Two numbers a,b */ int main() { int a = 15; // Initialize a to 15. int […]
In this tutorial, we will learn about Java subpackages. A package is a collection of related classes, interfaces, and subpackages. The package inside the package is called a subpackage.