cadencii.WaveUnitConfigElementTest.testSetKey C# (CSharp) Method

testSetKey() private method

private testSetKey ( ) : void
return void
        public void testSetKey()
        {
            WaveUnitConfigElementStub e = new WaveUnitConfigElementStub();
            e.setNakedKey( null );
            e.setKey( "Bar" );
            Assert.AreEqual( "Bar", e.getNakedKey() );
        }