namespace ImageSharp.Tests.Colors { using System; using Xunit; public class BulkPixelOperationsTests { public class TypeParam { } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackFromVector4(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackToVector4(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackToXyzBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackFromXyzBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackToXyzwBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackFromXyzwBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackToZyxBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackFromZyxBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackToZyxwBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } [Theory] [InlineData(default(TypeParam))] [InlineData(default(TypeParam))] public virtual void PackFromZyxwBytes(TypeParam dummy) where TColor : struct, IPixel { throw new NotImplementedException(); } } }