Skip to content

Commit

Permalink
fix: test namespace refactoring gymnastics
Browse files Browse the repository at this point in the history
  • Loading branch information
michaldivis committed Oct 31, 2023
1 parent 11a2a61 commit 3e8add7
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.ChordTests;

public class ChordFormulasTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.ChordTests;

public class ChordFunctionTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.ChordTests;

public class ChordFunctionsTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.ChordTests;

public class ChordInversionTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.ChordTests;

public class ChordProgressionTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.NotesTests;

public class IntervalTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.NotesTests;

public class IntervalsTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.NotesTests;

public class NoteTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.NotesTests;

public class NoteUtilsTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.NotesTests;

public class NotesTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.RhytmsTests;

public class PatternTests
{
[Fact]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.ScalesTests;

public class ScaleFormulaTests
{
[Theory]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.ScalesTests;

public class ScaleFormulasTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.UnitsTests;

public class TimeTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace DarkMusicConcepts;
namespace DarkMusicConcepts.Tests.UnitsTests;

public class UnitTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace DarkMusicConcepts.Tests.Utils;
namespace DarkMusicConcepts.Tests.UtilsTests;

public class ListExtensionsTests
{
private const string _item1 = "Harry";
Expand Down

0 comments on commit 3e8add7

Please sign in to comment.