Advertisement
Guest User

Untitled

a guest
Apr 19th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. let db = dbSchema.GetDataContext()
  2. type ``Stored Procedures``(output:ITestOutputHelper) =
  3.  
  4. [<Fact>]
  5. [<Trait("Category", "UAM")>]
  6. [<Trait("Category", "Create user")>]
  7. let ``Create a new user should add a user to the DB `` () =
  8. let balle = db.DataContext.ExecuteCommand("EXEC [dbo].[sp_CreateUser]
  9. @UserName = 'PeppaPig',
  10. @Password = '4861F055CA27',
  11. @RealName = 'Peppa Pig',
  12. @EmailAddress = 'uktest@ikano.se',
  13. @Description = 'bagaren',
  14. @RoleId = 60598;","")
  15. ()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement