JsonFileTests LoadingJsonWithoutFileIsNotAllowed 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 LoadingJsonWithoutFileIsNotAllowed()
Examples

[Test]
public void LoadingJsonWithoutFileIsNotAllowed()
{
    Assert.Throws<JsonFile.FileNotFound>(() => new JsonFile(null));
    Assert.Throws<JsonFile.FileNotFound>(() => new JsonFile(""));
}
See Also