public void ParseValue_Wrong_Value_Throws()
        {
            // arrange
            var    type  = new MultiplierPathType();
            object input = 123456;

            // act
            // assert
            Assert.Throws <ScalarSerializationException>(
                () => type.ParseValue(input));
        }
        public void ParseValue_Null()
        {
            // arrange
            var    type  = new MultiplierPathType();
            object input = null;

            // act
            object output = type.ParseValue(input);

            // assert
            Assert.IsType <NullValueNode>(output);
        }