mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-16 07:59:54 +08:00
19 lines
391 B
C#
19 lines
391 B
C#
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);
|
|
}
|
|
}
|
|
}
|