public void It_can_get_and_set_ForestConfiguration()
        {
            // Act
            var testForestConfiguration = new ForestConfiguration { DisplayName = "Test ForestConfiguration" };
            _it.ForestConfiguration = testForestConfiguration;

            // Assert
            Assert.AreEqual(testForestConfiguration.DisplayName, _it.ForestConfiguration.DisplayName);
        }
        public void It_has_ForestConfiguration_which_can_be_set_back_to_null()
        {
            // Arrange
            var testForestConfiguration = new ForestConfiguration { DisplayName = "Test ForestConfiguration" };
            _it.ForestConfiguration = testForestConfiguration;

            // Act
            _it.ForestConfiguration = null;

            // Assert
            Assert.IsNull(_it.ForestConfiguration);
        }
        public void It_has_a_constructor_that_takes_an_IdmResource()
        {
            var resource = new IdmResource
            {
                DisplayName = "My Display Name",
                Creator = new Person { DisplayName = "Creator Display Name", ObjectID = "Creator ObjectID"},
            };
            var it = new ForestConfiguration(resource);

            Assert.AreEqual("ForestConfiguration", it.ObjectType);
            Assert.AreEqual("My Display Name", it.DisplayName);
            Assert.AreEqual("Creator Display Name", it.Creator.DisplayName);
        }
        public void It_has_a_constructor_that_takes_an_IdmResource_without_Creator()
        {
            var resource = new IdmResource
            {
                DisplayName = "My Display Name",
            };
            var it = new ForestConfiguration(resource);

            Assert.AreEqual("My Display Name", it.DisplayName);
            Assert.IsNull(it.Creator);
        }
 public ForestConfigurationTests()
 {
     _it = new ForestConfiguration();
 }