From cc7db828ebe4e84e1be518c4d6de7734f59a9da2 Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Tue, 15 Nov 2016 01:30:49 +0100 Subject: [PATCH] removed TransposeInto_CodeGeneratorTest() --- .../Formats/Jpg/Block8x8FTests.cs | 27 +------------------ 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs b/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs index 814eafd87..07b926f08 100644 --- a/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs +++ b/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs @@ -207,32 +207,7 @@ namespace ImageSharp.Tests.Formats.Jpg Assert.Equal(expected, actual); } - - [Fact] - public void TransposeInto_CodeGeneratorTest() - { - char[] coordz = new[] {'X', 'Y', 'Z', 'W'}; - StringBuilder bld = new StringBuilder(); - - for (int i = 0; i < 8; i++) - { - char destCoord = coordz[i%4]; - char destSide = (i/4)%2 == 0 ? 'L' : 'R'; - - for (int j = 0; j < 8; j++) - { - char srcCoord = coordz[j%4]; - char srcSide = (j/4)%2 == 0 ? 'L' : 'R'; - - string expression = $"d.V{j}{destSide}.{destCoord} = V{i}{srcSide}.{srcCoord}; "; - bld.Append(expression); - } - bld.AppendLine(); - } - - Output.WriteLine(bld.ToString()); - } - + [Fact] public unsafe void TransposeInto_WithPointers()