Routine Update

This commit is contained in:
yubaolee
2015-11-06 22:56:26 +08:00
parent 3170191db6
commit 02ef43c0d1
5 changed files with 23 additions and 4 deletions

View File

@@ -125,5 +125,17 @@ namespace OpenAuth.UnitTest
Console.WriteLine(org.Name);
}
}
[TestMethod]
public void TestEdit()
{
var org = new Org
{
Id = 60,
Name = "test"
};
_app.ModifyOrg(org);
}
}
}