using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace cs_testcommon
{
public interface ITestRunner
{
///
///
///
///
///
/// Null if ok, otherwise the test message
string Run(string type, string method);
}
}