cadencii.WaveUnitConfigElementStub.setNakedValue C# (CSharp) Method

setNakedValue() public method

public setNakedValue ( string value ) : void
value string
return void
        public void setNakedValue( string value )
        {
            this.value = value;
        }

Usage Example

        public void testGetValue()
        {
            WaveUnitConfigElementStub e = new WaveUnitConfigElementStub();
            e.setNakedValue( "Foo" );
            Assert.AreEqual( "Foo", e.getValue() );

            e.setValue( null );
            Assert.NotNull( e.getValue() );
            Assert.AreEqual( "", e.getValue() );
        }
All Usage Examples Of cadencii.WaveUnitConfigElementStub::setNakedValue