JsonNodeTests ParseEmptyJsonTextIsNotAllowed Method Delta Engine Documentation

Namespace: DeltaEngine.Content.Json.Tests
Assembly: DeltaEngine.Content.Json.Tests (in DeltaEngine.Content.Json.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void ParseEmptyJsonTextIsNotAllowed()
Examples

[Test]
public void ParseEmptyJsonTextIsNotAllowed()
{
    Assert.Throws<JsonNode.NeedValidText>(() => new JsonNode(""));
}
See Also