Exemplo n.º 1
0
		public void TestEditValuenull() //Get
		{
			CategoriesController cc = new CategoriesController();

			int? testNull = null;
			var result = cc.Edit(testNull);

			Assert.IsNotNull(result, "Returns null");
			Assert.IsInstanceOfType(result, typeof(HttpStatusCodeResult));
		}