Browse Source

Rename tests

Something is getting cached causing tests to sporadically fail.
Hopefully this fixes that.
pull/188/head
James Jackson-South 9 years ago
parent
commit
cbb8e71f4b
  1. 4
      tests/ImageSharp.Tests/Colors/Rgba32Tests.cs
  2. 0
      tests/ImageSharp.Tests/Colors/Rgba32TransformTests.cs
  3. 4
      tests/ImageSharp.Tests/Colors/RgbaVectorTests.cs
  4. 4
      tests/ImageSharp.Tests/Colors/RgbaVectorTransformTests.cs

4
tests/ImageSharp.Tests/Colors/ColorTests.cs → tests/ImageSharp.Tests/Colors/Rgba32Tests.cs

@ -1,4 +1,4 @@
// <copyright file="ColorTests.cs" company="James Jackson-South"> // <copyright file="Rgba32Tests.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors. // Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
// </copyright> // </copyright>
@ -15,7 +15,7 @@ namespace ImageSharp.Tests
/// <summary> /// <summary>
/// Tests the <see cref="Rgba32"/> struct. /// Tests the <see cref="Rgba32"/> struct.
/// </summary> /// </summary>
public class ColorTests public class Rgba32Tests
{ {
/// <summary> /// <summary>
/// Tests the equality operators for equality. /// Tests the equality operators for equality.

0
tests/ImageSharp.Tests/Colors/ColorTransformTests.cs → tests/ImageSharp.Tests/Colors/Rgba32TransformTests.cs

4
tests/ImageSharp.Tests/Colors/ColorVectorTests.cs → tests/ImageSharp.Tests/Colors/RgbaVectorTests.cs

@ -1,4 +1,4 @@
// <copyright file="ColorVectorTests.cs" company="James Jackson-South"> // <copyright file="RgbaVectorTests.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors. // Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
// </copyright> // </copyright>
@ -15,7 +15,7 @@ namespace ImageSharp.Tests
/// <summary> /// <summary>
/// Tests the <see cref="RgbaVector"/> struct. /// Tests the <see cref="RgbaVector"/> struct.
/// </summary> /// </summary>
public class ColorVectorTests public class RgbaVectorTests
{ {
/// <summary> /// <summary>
/// Tests the equality operators for equality. /// Tests the equality operators for equality.

4
tests/ImageSharp.Tests/Colors/ColorVectorTransformTests.cs → tests/ImageSharp.Tests/Colors/RgbaVectorTransformTests.cs

@ -1,4 +1,4 @@
// <copyright file="ColorVectorTransformTests.cs" company="James Jackson-South"> // <copyright file="RgbaVectorTransformTests.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors. // Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
// </copyright> // </copyright>
@ -12,7 +12,7 @@ namespace ImageSharp.Tests.Colors
/// Tests the color transform algorithms. Test results match the output of CSS equivalents. /// Tests the color transform algorithms. Test results match the output of CSS equivalents.
/// <see href="https://jsfiddle.net/jamessouth/L1v8r6kh/"/> /// <see href="https://jsfiddle.net/jamessouth/L1v8r6kh/"/>
/// </summary> /// </summary>
public class ColorVectorTransformTests public class RgbaVectorTransformTests
{ {
private static readonly ApproximateFloatComparer FloatComparer = new ApproximateFloatComparer(0.01F); private static readonly ApproximateFloatComparer FloatComparer = new ApproximateFloatComparer(0.01F);
Loading…
Cancel
Save