// Copyright (c) Six Labors and contributors. // Licensed under the Apache License, Version 2.0. using SixLabors.ImageSharp.PixelFormats; using Xunit; using Xunit.Abstractions; namespace SixLabors.ImageSharp.Tests.PixelFormats.PixelOperations { public partial class PixelOperationsTests { public class L16OperationsTests : PixelOperationsTests { public L16OperationsTests(ITestOutputHelper output) : base(output) { } [Fact] public void IsSpecialImplementation() => Assert.IsType(PixelOperations.Instance); } } }