using System; using AnyOfTypes; using FluentAssertions; using WireMock.Matchers; using WireMock.Models; using WireMock.Plugin; using Xunit; namespace WireMock.Net.Tests.Plugin; public class PluginLoaderTests { public interface IDummy { } [Fact] public void Load_Valid() { // Act AnyOf pattern = "x"; var result = PluginLoader.Load(MatchBehaviour.AcceptOnMatch, MatchOperator.Or, pattern); // Assert result.Should().NotBeNull(); } [Fact] public void Load_Invalid_ThrowsException() { // Act Action a = () => PluginLoader.Load(); // Assert a.Should().Throw(); } }