修复radio checkbox展示的问题

This commit is contained in:
yubaolee
2018-04-11 14:35:41 +08:00
parent 94f75c3471
commit a552b15bac
6 changed files with 76 additions and 67 deletions

View File

@@ -3,6 +3,7 @@ using Infrastructure;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenAuth.App;
using OpenAuth.App.Request;
using OpenAuth.App.Response;
using OpenAuth.Repository.Domain;
namespace OpenAuth.UnitTest
@@ -36,5 +37,17 @@ namespace OpenAuth.UnitTest
});
}
[TestMethod]
public void GetInstance()
{
var instance = _runApp.Get("51a80784-55a6-405e-b296-935287122806");
var result = new Response<FlowVerificationResp>
{
Result = instance.MapTo<FlowVerificationResp>()
};
Console.WriteLine(JsonHelper.Instance.Serialize(result.Result.FrmPreviewHtml));
}
}
}