To test the insert, you insert a record from your test, then get the record in the same test, and then the user Assert.AreEqual to claim that you got what you inserted. You can use a primary / unique record key to get records in this case.
A similar update would be. You update the record from the test, then you get the updated record and claim that the values ββyou received are updated values.
To delete, you delete the record from the test, and then get the record. Here you can argue that get actually returns nothing
Suhas
source share