mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
Merge PlcSeriesType into PlcType by using 16 bits
This commit is contained in:
36
MewtocolTests/SkippedChecks.cs
Normal file
36
MewtocolTests/SkippedChecks.cs
Normal 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);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -2,6 +2,8 @@ using MewtocolNet;
|
||||
using Xunit;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
using MewtocolNet.Helpers;
|
||||
|
||||
namespace MewtocolTests {
|
||||
|
||||
public class TestLinkedLists {
|
||||
|
||||
Reference in New Issue
Block a user