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.AreFiveBrickBlocksAllowed
1 unit tests call Blocks.BlocksContent.AreFiveBrickBlocksAllowed
1 unit tests call Blocks.BlocksContent.AreFiveBrickBlocksAllowed
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 AreFiveBrickBlocksAllowed() { var content = new JewelBlocksContent(); Assert.IsTrue(content.AreFiveBrickBlocksAllowed); content.AreFiveBrickBlocksAllowed = false; Assert.IsFalse(content.AreFiveBrickBlocksAllowed); }
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