Skip to content

Commit

Permalink
Fixed some more names.
Browse files Browse the repository at this point in the history
  • Loading branch information
MeltyPlayer committed Oct 20, 2023
1 parent 92f11cc commit 61ffa6f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using NUnit.Framework;

namespace schema.text.reader {
internal class TextReaderMatchingTests {
internal class SchemaTextReaderMatchingTests {
[Test]
public void TestReadUpToStartOfTerminator() {
using var tr = TextSchemaTestUtil.CreateTextReader("abc,,xyz, 123");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
using NUnit.Framework;

using schema.util;

namespace schema.text.reader {
internal class TextReaderMultilineTests {
internal class SchemaTextReaderMultilineTests {
[Test]
public void TestReadAcrossMultipleLinesSeparately() {
var inputText = "1 2 3\n4, 5, 6\n7\n8\n9\nfoobar";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

using NUnit.Framework;

using schema.util;
using schema.util.asserts;


namespace schema.text.reader {
internal class TextReaderNumberTests {
internal class SchemaTextReaderNumberTests {
private void ReadAndAssert_<T>(
SchemaTextReader tr,
T expectedValue,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
using NUnit.Framework;

using schema.util;
using schema.util.asserts;

namespace schema.text.reader {
internal class TextReaderNumbersTests {
internal class SchemaTextReaderNumbersTests {
[Test]
public void TestReadBytesNull() {
using var tr = TextSchemaTestUtil.CreateTextReader("0,, ,255");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


namespace schema.text.reader {
internal class TextReaderPositionTests {
internal class SchemaTextReaderPositionTests {
[Test]
public void TestGetPositions() {
using var tr = TextSchemaTestUtil.CreateTextReader("abc");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


namespace schema.text.reader {
internal class TextReaderStringTests {
internal class SchemaTextReaderStringTests {
[Test]
public void TestReadChar() {
using var tr = TextSchemaTestUtil.CreateTextReader("abc");
Expand Down

0 comments on commit 61ffa6f

Please sign in to comment.