Tests: Move tests into package
This commit is contained in:
@ -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;
|
||||||
|
|
@ -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 },
|
@ -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() {
|
Reference in New Issue
Block a user