mirror of
https://github.com/nsnail/ns-ext.git
synced 2025-06-19 22:08:17 +08:00
19 lines
306 B
C#
19 lines
306 B
C#
using NSExt.Extensions;
|
|
using Xunit;
|
|
|
|
namespace NSExt;
|
|
|
|
/// <summary>
|
|
/// 所有测试用例
|
|
/// </summary>
|
|
public class AllTests
|
|
{
|
|
/// <summary>
|
|
/// IsJsonString
|
|
/// </summary>
|
|
[Fact]
|
|
public void IsJsonString()
|
|
{
|
|
Assert.True("{\"a\":\"b\"}".IsJsonString());
|
|
}
|
|
} |