Merge PlcSeriesType into PlcType by using 16 bits

This commit is contained in:
Felix Weiß
2023-07-07 17:59:22 +02:00
parent 864389a4ad
commit 88cdc1a36c
13 changed files with 220 additions and 123 deletions

View File

@@ -0,0 +1,36 @@
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);
}
}