mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
67 lines
1.8 KiB
C#
67 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests
|
|
{
|
|
public class WechatApiDeclarationTests
|
|
{
|
|
private static readonly Assembly _assembly = Assembly.Load("SKIT.FlurlHttpClient.Wechat.Api");
|
|
|
|
[Fact(DisplayName = "验证 API 模型命名")]
|
|
public void ApiModelsNamingTest()
|
|
{
|
|
TestAssertUtil.VerifyApiModelsNaming(_assembly, out var ex);
|
|
|
|
if (ex != null)
|
|
throw ex;
|
|
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
[Fact(DisplayName = "验证 API 模型定义")]
|
|
public void ApiModelsDefinitionTest()
|
|
{
|
|
string workdir = Path.Combine(Environment.CurrentDirectory, "ModelSamples");
|
|
Assert.True(Directory.Exists(workdir));
|
|
|
|
TestAssertUtil.VerifyApiModelsDefinition(_assembly, workdir, out var ex);
|
|
|
|
if (ex != null)
|
|
throw ex;
|
|
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
[Fact(DisplayName = "验证 API 事件定义")]
|
|
public void ApiEventsDefinitionTest()
|
|
{
|
|
string workdir = Path.Combine(Environment.CurrentDirectory, "EventSamples");
|
|
Assert.True(Directory.Exists(workdir));
|
|
|
|
TestAssertUtil.VerifyApiEventsDefinition(_assembly, workdir, out var ex);
|
|
|
|
if (ex != null)
|
|
throw ex;
|
|
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
[Fact(DisplayName = "验证 API 接口命名")]
|
|
public void ApiExtensionsNamingTest()
|
|
{
|
|
TestAssertUtil.VerifyApiExtensionsNaming(_assembly, out var ex);
|
|
|
|
if (ex != null)
|
|
throw ex;
|
|
|
|
Assert.Null(ex);
|
|
}
|
|
}
|
|
}
|