diff --git a/tests/ImageSharp.Tests/FileTestBase.cs b/tests/ImageSharp.Tests/FileTestBase.cs
index 88d6188805..392ccfc7df 100644
--- a/tests/ImageSharp.Tests/FileTestBase.cs
+++ b/tests/ImageSharp.Tests/FileTestBase.cs
@@ -8,7 +8,7 @@ namespace SixLabors.ImageSharp.Tests
///
/// The test base class for reading and writing to files.
///
- public abstract class FileTestBase : TestBase
+ public abstract class FileTestBase
{
///
/// TODO: We really should not depend on this! Let's use well defined, test-case specific inputs everywhere!
diff --git a/tests/ImageSharp.Tests/Formats/Jpg/JpegUtilsTests.cs b/tests/ImageSharp.Tests/Formats/Jpg/JpegUtilsTests.cs
index 60036c1767..ad728d8dd8 100644
--- a/tests/ImageSharp.Tests/Formats/Jpg/JpegUtilsTests.cs
+++ b/tests/ImageSharp.Tests/Formats/Jpg/JpegUtilsTests.cs
@@ -11,7 +11,7 @@ using Xunit;
// ReSharper disable InconsistentNaming
namespace SixLabors.ImageSharp.Tests
{
- public class JpegUtilsTests : TestBase
+ public class JpegUtilsTests
{
public static Image CreateTestImage()
where TPixel : struct, IPixel
diff --git a/tests/ImageSharp.Tests/TestBase.cs b/tests/ImageSharp.Tests/TestBase.cs
deleted file mode 100644
index ffacd749ca..0000000000
--- a/tests/ImageSharp.Tests/TestBase.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright (c) Six Labors and contributors.
-// Licensed under the Apache License, Version 2.0.
-
-using System.IO;
-using System.Reflection;
-using SixLabors.ImageSharp.Formats;
-
-namespace SixLabors.ImageSharp.Tests
-{
- ///
- /// The test base class. Inherit from this class for any image manipulation tests.
- ///
- public abstract class TestBase
- {
- }
-}
\ No newline at end of file
diff --git a/tests/ImageSharp.Tests/TestUtilities/ImagingTestCaseUtility.cs b/tests/ImageSharp.Tests/TestUtilities/ImagingTestCaseUtility.cs
index efb6ecc598..1b3ebf016a 100644
--- a/tests/ImageSharp.Tests/TestUtilities/ImagingTestCaseUtility.cs
+++ b/tests/ImageSharp.Tests/TestUtilities/ImagingTestCaseUtility.cs
@@ -16,7 +16,7 @@ namespace SixLabors.ImageSharp.Tests
/// Utility class to provide information about the test image & the test case for the test code,
/// and help managing IO.
///
- public class ImagingTestCaseUtility : TestBase
+ public class ImagingTestCaseUtility
{
///
/// Name of the TPixel in the owner
diff --git a/tests/ImageSharp.Tests/TestUtilities/MeasureFixture.cs b/tests/ImageSharp.Tests/TestUtilities/MeasureFixture.cs
index 50974cef86..7725994c43 100644
--- a/tests/ImageSharp.Tests/TestUtilities/MeasureFixture.cs
+++ b/tests/ImageSharp.Tests/TestUtilities/MeasureFixture.cs
@@ -11,7 +11,7 @@ namespace SixLabors.ImageSharp.Tests
///
/// Utility class to measure the execution of an operation. It can be used either by inheritance or by composition.
///
- public class MeasureFixture : TestBase
+ public class MeasureFixture
{
///
/// Value indicating whether priniting is enabled.