Last active
August 29, 2015 14:16
-
-
Save ashmind/7f8f0a725de5f21ab411 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace SomeUnit { | |
public class AssertHelper { | |
public static AssertHelper Assert { get; } = new AssertHelper(); | |
} | |
} | |
namespace SomeUnit.Extensions { | |
public static class AssertExtensions { | |
public static void SomethingNew(this AssertHelper assert) {} | |
} | |
} | |
namespace Tests { | |
using static SomeUnit.AssertHelper; | |
using SomeUnit.Extensions; | |
public class Tests { | |
public void Test() { | |
Assert.SomethingNew(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment