Added missing tests

This commit is contained in:
Kristian Hellang
2013-11-24 23:44:30 +01:00
parent b9b60ed77c
commit df0963c848
3 changed files with 76 additions and 9 deletions
+4 -2
View File
@@ -4,11 +4,13 @@
{
public ReferenceUpdate(string sha, bool force = false)
{
Ensure.ArgumentNotNullOrEmptyString(sha, "sha");
Sha = sha;
Force = force;
}
public string Sha { get; set; }
public bool Force { get; set; }
public string Sha { get; private set; }
public bool Force { get; private set; }
}
}