package main import ( "awesomeProject/oop/employee" "testing" ) func TestAdd(t *testing.T) { println("add") } func TestSub(t *testing.T) { println("sub") e := employee.Employee{ FirstName: "Sam", LastName: "Adolf", TotalLeaves: 30, LeavesTaken: 20, } e.LeavesRemaining() }