Tutorial by Examples

This example is divided into two pillars SalaryCalculation Class : Calculating the net salary after tax deduction SalaryCalculationTests Class : For testing the method that calculates the net salary Step 1: Create Class Library, name it WagesLibrary or any appropriate name. Then rename the cl...
This example has more tests available in unit testing. Employee.vb (Class Library) ''' <summary> ''' Employee Class ''' </summary> Public Class Employee ''' <summary> ''' First name of employee ''' </summary> Public Property FirstName As String = &q...

Page 1 of 1