Exemplo n.º 1
0
 public void TestingMvcWithPost()
 {
     MvcApprovals.VerifyMvcViaPost <Person>(new CoolController().SaveName,
                                            new NameValueCollection {
         { "Name", "Henrik" }
     });
 }
Exemplo n.º 2
0
 public void TestingMvcWithPost2()
 {
     MvcApprovals.VerifyMvcViaPost <Person>(new CoolController().SaveName, new Person {
         Name = "Henrik"
     });
 }