mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
29 lines
991 B
C#
29 lines
991 B
C#
using SKIT.FlurlHttpClient.Tools.CodeAnalyzer;
|
|
using Xunit;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Ads.UnitTests
|
|
{
|
|
public class TestCase_CodeReview
|
|
{
|
|
[Fact(DisplayName = "测试用例:代码质量分析")]
|
|
public void TestCodeAnalyzer()
|
|
{
|
|
Assert.Null(Record.Exception(() =>
|
|
{
|
|
CodeAnalyzerOptions options = new CodeAnalyzerOptions()
|
|
{
|
|
AssemblyName = "SKIT.FlurlHttpClient.Wechat.Ads",
|
|
WorkDirectoryForSourceCode = TestConfigs.WorkDirectoryForSdk,
|
|
WorkDirectoryForTestSample = TestConfigs.WorkDirectoryForTest,
|
|
AllowNotFoundEventTypes = true,
|
|
AllowNotFoundEventSamples = true
|
|
};
|
|
CodeAnalyzer analyzer = new CodeAnalyzer(options);
|
|
analyzer.Start();
|
|
analyzer.Assert();
|
|
analyzer.Flush();
|
|
}));
|
|
}
|
|
}
|
|
}
|