mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
37 lines
685 B
C#
37 lines
685 B
C#
using MewtocolNet;
|
|
using MewtocolNet.DocAttributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace MewtocolTests;
|
|
|
|
public class SkippedChecks {
|
|
|
|
private readonly ITestOutputHelper output;
|
|
|
|
public SkippedChecks(ITestOutputHelper output) {
|
|
this.output = output;
|
|
}
|
|
|
|
[Fact]
|
|
public void BuildBCCFrameGeneration() {
|
|
|
|
var toSuccess = new List<Type> {
|
|
|
|
typeof(PlcCodeTestedAttribute),
|
|
typeof(PlcEXRTAttribute),
|
|
typeof(PlcLegacyAttribute),
|
|
|
|
};
|
|
|
|
Assert.NotNull(toSuccess);
|
|
|
|
}
|
|
|
|
}
|