Some renaming

This commit is contained in:
aedampir@gmail.com
2016-04-06 14:42:20 +07:00
parent dfb636c393
commit 6140bc678b
3 changed files with 4 additions and 4 deletions
@@ -0,0 +1,16 @@
using System;
namespace Octokit.Tests.Conventions
{
public class MissingClientConstructorTestClassException : Exception
{
public MissingClientConstructorTestClassException(Type modelType)
: base(CreateMessage(modelType))
{ }
static string CreateMessage(Type ctorTest)
{
return string.Format("Constructor test method is missing {0}.", ctorTest.FullName);
}
}
}