Having Fun with Automated Tests

You read the title right. It has the words “Fun” and “Automated Tests” in one sentence. Consider the following test data: _dbContext.Members.Add(new Member {     Id = new Guid(CONST_MEMBER_ID_1),     FirstName = “John”,     LastName = “Smith”,     Address = “One Fictional Way”,     CellNo = “09150001111”,     Email = “johnsmith@mail.com” }); This adds a test data to the Members table in a SQLite database using Entity Framework. This SQLite db gets created and then destroyed (usingContinue reading “Having Fun with Automated Tests”