Namespace: DeltaEngine.Content
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Tests: DeltaEngine.Content.Json.Tests.JsonContentTests
1 unit tests call DeltaEngine.Content.ContentData.IsDisposed
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Property Value
Type: BooleanRemarks
Examples
[Test, Category("Slow"), Ignore] public void LoadJsonContentFromFile() { var json = ContentLoader.Load<JsonContent>("Level"); Assert.False(json.IsDisposed); Assert.AreEqual(9, json.Data.NumberOfNodes); Assert.AreEqual(48, json.Data.Get<int>("height")); }
See Also