martinig

Stories submitted by martinig

Automated Testing of ASP.NET MVC Applications(www.methodsandtools.com)

submitted by martinigmartinig(568) 2 months, 1 day ago

This article discusses what the problems are with testing ASP.NET sites in general and how the ASP.NET MVC framework tries to solve them. read more...

add a comment |category: |Views: 2

tags: another

Customizing Project Level Templates in Visual Studio Unit Test Framewo(www.dotnet-tv.com)

submitted by martinigmartinig(568) 2 months, 14 days ago

The Visual Studio Unit Test framework is the only test framework provided out of the box with ASP.NET MVC 3. This article shows you how to create and install custom test project templates and view engine options. read more...

add a comment |category: |Views: 10

tags: another

Integrating .NET Artifacts in Agile ALM(www.dotnet-tv.com)

submitted by martinigmartinig(568) 3 months, 7 days ago

This article shows you how easy it is to use a build framework such as MSBuild or TeamCity to build .NET software. He also demonstrates how to add Continuous Integration (CI) with .NET applications to an Agile ALM CI ecosystem that can also integrate other artifact types, such as Java. read more...

add a comment |category: |Views: 2

tags: another

Code Contracts in .NET 4(www.dotnet-tv.com)

submitted by martinigmartinig(568) 4 months, 14 days ago

This video explains code contracts in .NET and how they can be used to improve data integrity, consistency, and development velocity with minimal impact to the size of the source base and even to production performance. read more...

add a comment |category: |Views: 8

tags: another

Mocking Frameworks in .NET(www.softwaretestingmagazine.com)

submitted by martinigmartinig(568) 6 months, 26 days ago

There are several open source tools to apply mocking principles in .NET. Tools like Rhino Mocks and Moq allow us to create mocks and stubs within our test method. These tools have a learning curve, but this video presents techniques that can ease you into these frameworks and help you automated your unit testing process. read more...

2 comments |category: |Views: 506

tags: another

AutoMoq Introduction(www.dotnet-tv.com)

submitted by martinigmartinig(568) 8 months, 20 days ago

AutoMoq is an “auto-mocking” container that automatically creates for Moq any fake objects that are necessary to instantiate the class under test. read more...

add a comment |category: |Views: 15

tags: another

Unit Testing in a Managed Environment(www.sqazone.net)

submitted by martinigmartinig(568) 1 year, 9 months ago

You’re ready to start unit-testing in a more managed, process-oriented way. How do you do it? Let's say, for example, you have Microsoft Team System in place, and you use it for source control and tracking work items. Obviously, you can do much more with Team System, but let's start with the basics. You've tasted enough unit-testing to feel that everyone can benefit from them. Where would you start? read more...

add a comment |category: |Views: 5

tags: another

Using WatiN to Leverage Common Elements in Web Testing(www.methodsandtools.com)

submitted by martinigmartinig(568) 2 years, 1 month ago

WatiN is an easy to use, feature rich framework for Web Application Testing in .Net. This article provides some practical insight into creating automation based on the WatiN framework. It presents a well thought out and proven foundation for general web testing. read more...

add a comment |category: |Views: 18

tags: another

Spec# Presentation(www.dotnet-tv.com)

submitted by martinigmartinig(568) 2 years, 4 months ago

Spec# is a formal language for API contracts (influenced by JML, AsmL, and Eiffel), which extends C# with constructs for non-null types, preconditions, postconditions, and object invariants. read more...

add a comment |category: |Views: 5

tags: another

Interaction Based Testing with Rhino Mocks(dotnet-tv.com)

submitted by martinigmartinig(568) 2 years, 8 months ago

Beyond the simplest scenarios, all objects had collaborators that they work with. This flies in the face of testing objects in isolation. This is the problem that mock objects were created to solve. In this video you will learn what mock objects are, how to utilize them and best practices on when / how to utilize them. Rhino Mocks is a mock objects framework for .Net whose core goals are to let the developer rely on the compiler work well with refactoring tools. read more...

add a comment |category: |Views: 9

tags: another

Using Active Record to Write Less Code(dotnet-tv.com)

submitted by martinigmartinig(568) 2 years, 9 months ago

What would you say if I told you that you can stop writing data access code in .Net? Aren’t you tired of writing the same thing over and over again, opening connection, querying the database, figuring out what to return, getting back untype data that you need to start putting on the form? Do you really see some value in writing yet another UPDATE statement?? The Active Record framework allows you to fully utilize the power of the database, but without the back breaking work that it used to take. Active Record uses .Net objects to relieve you from the repeating task of persistence. Those objects are schema aware and can persist and load themselves without you needing to write a single line of SQL. Building business application using Active Record is a pleasure, the database stuff just happens, and you are free to implement the business functionality. read more...

add a comment |category: |Views: 9

tags: another

ASP.NET 4.0 Roadmap(dotnet-tv.com)

submitted by martinigmartinig(568) 2 years, 9 months ago

Take a walk through the 4.0 landscape from ASP.NET and learn how you can get involved in shaping ASP.NET future. This video presentation focuses on the next release of ASP.NET including Web Forms and MVC. read more...

add a comment |category: |Views: 21

tags: another

Behaviour Driven Development with NGourd(dotnet-tv.com)

submitted by martinigmartinig(568) 2 years, 11 months ago

NGourd is a BDD framework for C#. read more...

add a comment |category: |Views: 14

tags: another

Core: An Aspect Oriented Business Objects Framework(dotnet-tv.com)

submitted by martinigmartinig(568) 2 years, 11 months ago

Learn about aspect-oriented design patterns and how they can be used to quickly add common functionality to your business objects. Josh Heyse explains how Aspect-Oriented Programming allows for the separation of true business logic and the code written allowing interaction with user interfaces. The Core framework is a generation model that dynamically adds common services, such as logging, auditing, persistence, and security to business objects. read more...

add a comment |category: |Views: 18

tags: another

Database Locking: What it is, Why it Matters and What to do About it(methodsandtools.com)

submitted by martinigmartinig(568) 3 years, 2 months ago

Database locking is a varied, evolving, complicated, and technical topic. This paper sheds light on the nature of database locking and how it varies between different platforms. It also discuss the types of application issues that can arise related as a result. It then looks at ways to ferret out these issues and to resolve them before they sneak out the door with your finished product. Armed with this understanding of the enemy and how it relates to your application, you’ll be much better able to avoid disaster. read more...

add a comment |category: |Views: 7

tags: another

Aspect Oriented Programming with PostSharp(dotnet-tv.com)

submitted by martinigmartinig(568) 3 years, 2 months ago

An introduction to PostSharp - an Aspect Oriented Programming (AOP) toolkit for .NET. AOP allows developers to reduce the level of duplication of code. read more...

add a comment |category: |Views: 6

tags: another