修改登录界面

This commit is contained in:
yubaolee
2015-04-28 18:17:04 +08:00
parent 8e4472b86a
commit 91384a5447
7 changed files with 43 additions and 77 deletions

View File

@@ -0,0 +1,18 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenAuth.Domain.Model;
namespace OpenAuth.UnitTest
{
[TestClass]
public class IndexTest
{
[TestMethod]
public void MenuTest()
{
string userid = "";
IndexApp app = new IndexApp();
MenuResponse response = app.LoadMenu(userid);
}
}
}