Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. [TestMethod]
  2. public void UpdateConfigExpectSuccess()
  3. {
  4. Api.InsertConfig(configObject); //Obviously this is defined elsewhere
  5.  
  6. Configuration updateConfig = new Configuration(testdata); //pull test data from test context or manually add it - it doesn't matter
  7.  
  8. ApiResponse response = Api.UpdateConfig(updateConfig);
  9.  
  10. // Whatever you plan to assert
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement