Ejemplo n.º 1
0
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                NpmSetSettings settings = null;

                // When
                var result = Record.Exception(() => settings.WithValue("foo"));

                // Then
                result.IsArgumentNullException("settings");
            }
Ejemplo n.º 2
0
            public void Should_Throw_If_Value_Is_Null()
            {
                // Given
                var settings = new NpmSetSettings();

                // When
                var result = Record.Exception(() => settings.WithValue(null));

                // Then
                result.IsArgumentNullException("value");
            }
Ejemplo n.º 3
0
            public void Should_Set_Value()
            {
                // Given
                var settings = new NpmSetSettings();
                var value    = "foo";

                // When
                settings.WithValue(value);

                // Then
                settings.Value.ShouldBe(value);
            }