Feeds:
Posts
Comments

Archive for December, 2008

Microsoft’s upcoming “Oslo” modeling initiative is about tools and languages. MGraph is the piece within the language “M” that defines values, while MSchema is for schemas, functions and constraints and MGrammar is for textual DSLs. “Oslo” is still CTP and it will take some time until all concepts are available for production use.
By then, Microsoft [...]

Read Full Post »

The Problem
Lets say you got a ClassA with SomeProperty and SomeMethod, plus a ClassB implementing ClassA and overriding both members.

public class ClassA
{
public virtual bool SomeProperty
//..

public virtual bool SomeMethod()
//..
}

public class ClassB : ClassA
{
public override bool SomeProperty
[...]

Read Full Post »

As I do test-driven development, I find it annoying to switch over to the Mouse every time I want to run my tests.
So I just hooked up a hotkey for running unit tests.
CTRL+ALT+T usually shows the Test Session pane – I’ve never used it, so I assigned it to:
ReSharper.UnitTest_ContextRun
Context_Run runs the test method your cursor [...]

Read Full Post »