Skip to content

Instantly share code, notes, and snippets.

@Karql
Karql / gist:5592710
Last active December 17, 2015 10:09
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MiniTestFramework
{
public class SmallerAssertion : AssertionInteface
{
public string Message { get { return "smaller"; } }
@Karql
Karql / gist:5592703
Last active December 17, 2015 10:09
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace MiniTestFramework
{
public interface AssertionInteface
{