mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 14:23:34 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
16 lines
258 B
C#
16 lines
258 B
C#
// Copyright © WireMock.Net
|
|
|
|
using FluentAssertions;
|
|
using WireMock.Util;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.Util;
|
|
|
|
public class SystemUtilsTests
|
|
{
|
|
[Fact]
|
|
public void Version()
|
|
{
|
|
SystemUtils.Version.Should().NotBeEmpty();
|
|
}
|
|
} |