Tests: Move tests into package

This commit is contained in:
2024-01-05 17:21:12 +01:00
parent 2556033a07
commit 3a89e16db3
3 changed files with 6 additions and 6 deletions

View File

@ -2,9 +2,9 @@
using Microsoft.Data.Sqlite; using Microsoft.Data.Sqlite;
using System.Reflection; using System.Reflection;
namespace Tests { namespace Tests.Helpers {
[TestFixture] [TestFixture]
public class HelpersBillingTest { public class BillingTest {
private SqliteConnection? Connection; private SqliteConnection? Connection;

View File

@ -1,8 +1,8 @@
using Elwig.Helpers; using Elwig.Helpers;
namespace Tests { namespace Tests.Helpers {
[TestFixture] [TestFixture]
public class HelpersUtilsTest { public class UtilsTest {
private static readonly double[,] Gradation = new double[,] { private static readonly double[,] Gradation = new double[,] {
{ 14.0, 68.0 }, { 14.0, 68.0 },

View File

@ -1,10 +1,10 @@
using Elwig.Helpers; using Elwig.Helpers;
using System.Windows.Controls; using System.Windows.Controls;
namespace Tests { namespace Tests.Helpers {
[TestFixture] [TestFixture]
[Apartment(ApartmentState.STA)] [Apartment(ApartmentState.STA)]
public class HelpersValidatorTest { public class ValidatorTest {
private static TextBox TB(string value, int caret = 0) { private static TextBox TB(string value, int caret = 0) {
return new() { return new() {