This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using NUnit.Framework; | ||
|
||
namespace StreamCompanion.Tests.JsonConverter | ||
{ | ||
[TestFixture] | ||
public class ConverterUnitTest | ||
{ | ||
[Test] | ||
public void CanConvert() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanExport() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanImport() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanExportStreams() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanImportStreams() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using NUnit.Framework; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace StreamCompanion.Tests.JsonConverter | ||
{ | ||
[TestFixture] | ||
public class DeserializedRootUnitTest | ||
{ | ||
[Test] | ||
public void CanReturnTheCorrectId() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanReturnTheCorrectCurrentlyWatchingItems() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanReturnTheCorrectCompletedItems() | ||
{ | ||
} | ||
[Test] | ||
public void CanReturnTheCorrectOnHoldItems() | ||
{ | ||
} | ||
[Test] | ||
public void CanReturnTheCorrectDroppedItems() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanReturnTheCorrectPlanToWatchItems() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using NUnit.Framework; | ||
|
||
namespace StreamCompanion.Tests.JsonConverter | ||
{ | ||
[TestFixture] | ||
public class SerializedRootUnitTest | ||
{ | ||
[Test] | ||
public void CanReturnTheCorrectId() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanReturnTheCorrectCurrentlyWatchingItems() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanReturnTheCorrectCompletedItems() | ||
{ | ||
} | ||
[Test] | ||
public void CanReturnTheCorrectOnHoldItems() | ||
{ | ||
} | ||
[Test] | ||
public void CanReturnTheCorrectDroppedItems() | ||
{ | ||
} | ||
|
||
[Test] | ||
public void CanReturnTheCorrectPlanToWatchItems() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters