Skip to content

Commit

Permalink
create test todo's
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed May 6, 2024
1 parent 087d0d0 commit 96d443c
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion test/by/By.WriteAndRead.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void ByNull()
b.Add(string.Empty);
b.Add(Array.Empty<byte>());
b.Add(BigInteger.Zero);

Assert.Equal(string.Empty, b.Get<string>());
Assert.Equal(Array.Empty<byte>(), b.Get<byte[]>());
Assert.Equal(BigInteger.Zero, b.Get<BigInteger>());
Expand Down Expand Up @@ -278,4 +278,29 @@ public void ByBigInteger()
Assert.Equal(b2, b.Get<BigInteger>());
Assert.True(b.IsValid);
}

[Fact(Skip = "Enum")]
public void ByEnum()
{
}

[Fact(Skip = "TODO")]
public void ByArray()
{
}

[Fact(Skip = "TODO")]
public void ByList()
{
}

[Fact(Skip = "TODO")]
public void ByStruct()
{
}

[Fact(Skip = "TODO")]
public void ByClass()
{
}
}

0 comments on commit 96d443c

Please sign in to comment.