public void Test_TAGProcessorStateBase_SetUsingCCA() { var state = new TAGProcessorStateBase(); Assert.False(state.UsingCCA, "Initial value incorrect"); state.SetUsingCCA(true); Assert.True(state.UsingCCA, "Value incorrect after setting"); }