Namespace: Blocks
Assembly: Blocks (in Blocks.exe) Version: 1.1.1.0 (1.1.1)
Tests: Blocks.Tests.BlocksContentTests
Tests: Blocks.Tests.FruitBlocksContentTests
Tests: Blocks.Tests.JewelBlocksContentTests
1 unit tests call Blocks.BlocksContent.DoBricksSplitInHalfWhenRowFull
1 unit tests call Blocks.BlocksContent.DoBricksSplitInHalfWhenRowFull
1 unit tests call Blocks.BlocksContent.DoBricksSplitInHalfWhenRowFull
Assembly: Blocks (in Blocks.exe) Version: 1.1.1.0 (1.1.1)
Syntax
Property Value
Type: BooleanRemarks
Remarks
Remarks
Examples
[Test, CloseAfterFirstFrame] public void DoBricksSplitInHalfOnExit() { var content = new JewelBlocksContent(); Assert.IsFalse(content.DoBricksSplitInHalfWhenRowFull); content.DoBricksSplitInHalfWhenRowFull = true; Assert.IsTrue(content.DoBricksSplitInHalfWhenRowFull); }
Examples
[Test, CloseAfterFirstFrame] public void Constructor() { var content = new FruitBlocksContent(); Assert.AreEqual("FruitBlocks_", content.Prefix); Assert.IsTrue(content.AreFiveBrickBlocksAllowed); Assert.IsTrue(content.DoBricksSplitInHalfWhenRowFull); }
Examples
[Test, CloseAfterFirstFrame] public void Constructor() { var content = new JewelBlocksContent(); Assert.AreEqual("JewelBlocks_", content.Prefix); Assert.IsTrue(content.AreFiveBrickBlocksAllowed); Assert.IsFalse(content.DoBricksSplitInHalfWhenRowFull); }
See Also