public void AUT_NullComposer_Is_Instance_Present_Test()
 {
     // Assert
     _nullComposerInstanceType.ShouldNotBeNull();
     _nullComposerInstance.ShouldNotBeNull();
     _nullComposerInstanceFixture.ShouldNotBeNull();
     CurrentInstance.ShouldNotBeNull();
 }
        public void AUT_NullComposer_Instantiated_Without_Parameter_No_Throw_Exception_Test()
        {
            // Arrange
            NullComposer <dynamic> instance = null;

            // Act
            var exception = CreateAnalyzer.GetThrownExceptionWhenCreate(out instance);

            // Assert
            instance.ShouldNotBeNull();
            exception.ShouldBeNull();
        }