Technorati Tags: Unit Testing,MVC,VS 2010
I have a view that really only provides content, is there a quick way to test that it exists? What’s the Assert?
There’s really not much to unit test if you have a page that has only HTML in a MVC (Model-View-Controller) project. And to some extent, if you had a test [...]
Posts Tagged ‘VS 2010’
Unit Testing a Very Simple ViewResult in MVC
Filed under: Technology | Tags: MVC, Unit Testing, VS 2010
Unit Test Authorize Attribute
Filed under: Technology | Tags: ASP.NET, MVC, Unit Testing, VS 2010
Technorati Tags: Unit Testing,ASP.NET,MVC,VS 2010
Story: I want to write a unit test to ensure that the Authorize attribute is applied to a controller ActionResult or ViewResult so that security is tested.
Here is the test:
Unit Test
[TestMethod]
public void PreviousSiteUserConversion_Authorization_Attributes_Have_Been_Applied()
{
// Arrange
MethodInfo varietalMethod = typeof(AdminController).GetMethod("PreviousSiteUserConversion", new Type[] { });
// Act
var attributes = varietalMethod.GetCustomAttributes(typeof(AuthorizeAttribute), true);
// Assert
Assert.IsNotNull(attributes);
Assert.AreEqual(1, attributes.Length);
var authAttribute = (AuthorizeAttribute)attributes[0];
string[] [...]
Impressed with CrystalTech for .NET 4.0
Filed under: Technology | Tags: .NET 4.0, ASP.NET, Hosting, MVC, VS 2010
Technorati Tags: .NET 4.0,Hosting,ASP.NET
I’ve used CrystalTech for years. They seemed to be falling behind a bit when I started to work with the MVC (Model-View-Controller) pattern. That works MUCH better with IIS 7 than with IIS 6, but CrystalTech only had IIS 6 servers.
That’s all changed!
I now have no excuses for not upgrading my sites [...]
MVC – Upcoming Series
Technorati Tags: MVC,VS 2010
I’ve been playing with Microsoft’s ASP.NET MVC (Model-View-Controller) application on and off for about a year now. It’s been moving at such a fast pace that it seemed I was always starting over with another install – CTPs, V1 Visual Studio 2008, previews for Visual Studio 2010… And now I’m currently on [...]
Error Check for MaxLength in Entity Framework
Technorati Tags: EF,MVC,VS 2010
HEADLINE: edmProperty.TypeUsage.Facets[“MaxLength”].Value comes in handy.
I don’t make a habit of making a post when someone else has done some work… I might point it out, and in that spirit here is the post that finally sent me in the right direction: http://soci.hu/blog/. However, the post is not in English (fortunately, C# is [...]
Showing the Version for an MVC App
Technorati Tags: MVC,ASP.NET,VS 2010
The primary MVC (Model-View-Controller) application that I’m working on is called KarlZMvc resulting in a dll called KarlZMvc.dll. To get the version output on my Site.Master page I need to include the following line:
Code Snippet
<%= typeof(KarlZMvc.MvcApplication).Assembly.GetName().Version.ToString() %>
I tried all sorts of combinations with the GetExecutingAssembly, or calling, etc. But none seemed to [...]
XML Comments for Entity Framework
Filed under: Technology | Tags: EF, Sandcastle, SHFB, VS 2010
Technorati Tags: EF,Sandcastle,SHFB,VS 2010
HEADLINE: If I use the Entity Framework (Self Tracking Entities or EntityObjects) templates, how can I add XML Comments so that I can use Sandcastle and Sandcastle Help File Builder to generate the documentation for my libraries? Is there a way to modify the T4 templates so that I can access the [...]
Saturday Night Wrestling with MVC
Filed under: Technology | Tags: ASP.NET, EF, MVC, Unit Testing, VS 2010
Ok… It wasn’t really that bad, but it did take some effort. Here was my objective: Now that MVC (ASP.NET Model-View-Controller) 1.1 has been released (not sure how I missed that) to work with Visual Studio 2010 and .NET 4.0 migrate my evolving website to use the .NET 4.0 beta.
I was able to get it [...]
Memorial Day Weekend 2009
I’ve actually been playing with Visual Studio 2010 Beta 1 this weekend. I finally have a Team Foundation Server setup, some code written, a continuous integration build going, and have created some work items.
Since ASP.NET MVC (Model View Controller) was not shipped with Beta 1 I couldn’t work on my website. So to experiment some [...]