Make all existing tests public

This commit is contained in:
Dean Herbert
2017-12-20 21:49:30 +09:00
parent 111a56399f
commit fa7ba29900
28 changed files with 28 additions and 28 deletions

View File

@@ -16,7 +16,7 @@ namespace osu.Framework.Tests.Visual
{
[TestFixture]
[System.ComponentModel.Description("frame-based animations")]
internal class TestCaseAnimation : TestCase
public class TestCaseAnimation : TestCase
{
public TestCaseAnimation()
{

View File

@@ -16,7 +16,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
internal class TestCaseBlending : TestCase
public class TestCaseBlending : TestCase
{
private readonly Dropdown<BlendingMode> colourModeDropdown;
private readonly Dropdown<BlendingEquation> colourEquation;

View File

@@ -9,7 +9,7 @@ using OpenTK;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseBufferedContainer : TestCaseMasking
public class TestCaseBufferedContainer : TestCaseMasking
{
private readonly BufferedContainer buffer;

View File

@@ -11,7 +11,7 @@ using OpenTK;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseCheckboxes : TestCase
public class TestCaseCheckboxes : TestCase
{
public TestCaseCheckboxes()
{

View File

@@ -10,7 +10,7 @@ using osu.Framework.Testing;
namespace osu.Framework.Tests.Visual
{
[System.ComponentModel.Description(@"Checking for bugged corner radius")]
internal class TestCaseCircularContainer : TestCase
public class TestCaseCircularContainer : TestCase
{
private SingleUpdateCircularContainer container;

View File

@@ -13,7 +13,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseCircularProgress : TestCase
public class TestCaseCircularProgress : TestCase
{
private readonly CircularProgress clock;

View File

@@ -14,7 +14,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseContextMenu : TestCase
public class TestCaseContextMenu : TestCase
{
private const int start_time = 0;
private const int duration = 1000;

View File

@@ -14,7 +14,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseDelayedLoad : TestCase
public class TestCaseDelayedLoad : TestCase
{
private const int panel_count = 2048;

View File

@@ -12,7 +12,7 @@ using osu.Framework.Testing;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseDrawSizePreservingFillContainer : TestCase
public class TestCaseDrawSizePreservingFillContainer : TestCase
{
public TestCaseDrawSizePreservingFillContainer()
{

View File

@@ -14,7 +14,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseDropdownBox : TestCase
public class TestCaseDropdownBox : TestCase
{
private const int items_to_add = 10;

View File

@@ -16,7 +16,7 @@ namespace osu.Framework.Tests.Visual
{
[TestFixture]
[System.ComponentModel.Description("implementing the IEffect interface")]
internal class TestCaseEffects : TestCase
public class TestCaseEffects : TestCase
{
public TestCaseEffects()
{

View File

@@ -20,7 +20,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseFillFlowContainer : TestCase
public class TestCaseFillFlowContainer : TestCase
{
private FillDirectionDropdown selectionDropdown;

View File

@@ -18,7 +18,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseLocalisation : TestCase
public class TestCaseLocalisation : TestCase
{
// ReSharper disable once PrivateFieldCanBeConvertedToLocalVariable
private readonly LocalisationEngine engine; //keep a reference to avoid GC of the engine

View File

@@ -15,7 +15,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseMasking : TestCase
public class TestCaseMasking : TestCase
{
protected Container TestContainer;

View File

@@ -13,7 +13,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseNestedHover : TestCase
public class TestCaseNestedHover : TestCase
{
public TestCaseNestedHover()
{

View File

@@ -19,7 +19,7 @@ using MouseState = osu.Framework.Input.MouseState;
namespace osu.Framework.Tests.Visual
{
internal class TestCaseNestedMenus : TestCase
public class TestCaseNestedMenus : TestCase
{
private const int max_depth = 5;
private const int max_count = 5;

View File

@@ -12,7 +12,7 @@ namespace osu.Framework.Tests.Visual
{
[TestFixture]
[System.ComponentModel.Description("ensure validity of drawables when receiving certain values")]
internal class TestCasePropertyBoundaries : TestCase
public class TestCasePropertyBoundaries : TestCase
{
[BackgroundDependencyLoader]
private void load()

View File

@@ -15,7 +15,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseRigidBody : TestCase
public class TestCaseRigidBody : TestCase
{
private readonly TestRigidBodySimulation sim;

View File

@@ -17,7 +17,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseScreen : TestCase
public class TestCaseScreen : TestCase
{
public TestCaseScreen()
{

View File

@@ -14,7 +14,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseScrollableFlow : TestCase
public class TestCaseScrollableFlow : TestCase
{
private readonly ScheduledDelegate boxCreator;

View File

@@ -14,7 +14,7 @@ using OpenTK;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseSearchContainer : TestCase
public class TestCaseSearchContainer : TestCase
{
public TestCaseSearchContainer()
{

View File

@@ -15,7 +15,7 @@ namespace osu.Framework.Tests.Visual
{
[TestFixture]
[System.ComponentModel.Description("potentially challenging size calculations")]
internal class TestCaseSizing : TestCase
public class TestCaseSizing : TestCase
{
private readonly Container testContainer;

View File

@@ -10,7 +10,7 @@ using osu.Framework.Testing;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseSpriteText : TestCase
public class TestCaseSpriteText : TestCase
{
public TestCaseSpriteText()
{

View File

@@ -18,7 +18,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseTabControl : TestCase
public class TestCaseTabControl : TestCase
{
public TestCaseTabControl()
{

View File

@@ -11,7 +11,7 @@ using OpenTK;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseTextBox : TestCase
public class TestCaseTextBox : TestCase
{
public TestCaseTextBox()
{

View File

@@ -15,7 +15,7 @@ namespace osu.Framework.Tests.Visual
{
[TestFixture]
[System.ComponentModel.Description("word-wrap and paragraphs")]
internal class TestCaseTextFlow : TestCase
public class TestCaseTextFlow : TestCase
{
public TestCaseTextFlow()
{

View File

@@ -15,7 +15,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseTooltip : TestCase
public class TestCaseTooltip : TestCase
{
private readonly Container testContainer;

View File

@@ -13,7 +13,7 @@ using OpenTK.Graphics;
namespace osu.Framework.Tests.Visual
{
[TestFixture]
internal class TestCaseTriangles : TestCase
public class TestCaseTriangles : TestCase
{
private readonly Container testContainer;