Inheritance Hierarchy
Drench.Tests ColorFactoryTests
Namespace: Drench.Tests
Assembly: Drench.Tests (in Drench.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax
The ColorFactoryTests type exposes the following members.
Constructors
Name | Description | |
---|---|---|
ColorFactoryTests | Initializes a new instance of the ColorFactoryTests class |
Methods
Name | Description | |
---|---|---|
RandomColorIsRounded |
Examples
[Test] public void RandomColorIsRounded() { Randomizer.Use(new FixedRandom(new[] { 0.1f, 0.2f, 0.3f })); Color color = new ColorFactory().Generate(0.5f, 0.1f); Assert.AreEqual(new Color(0.5f, 0.6f, 0.6f), color); }
See Also