public void ToCustomization_ShouldThrowIfBuilderIsNull()
        {
            // Arrange
            ISpecimenBuilder nullBuilder = null;

            // Act & Assert
            Assert.Throws <ArgumentNullException>(() =>
                                                  nullBuilder.ToCustomization());
        }