public void StatefulState_Serialize()
        {
            IComponentState state     = new StatefulComponentState("Off");
            IJsonValue      jsonValue = state.ToJsonValue();

            jsonValue.ValueType.ShouldBeEquivalentTo(JsonValueType.String);
            jsonValue.GetString().ShouldBeEquivalentTo("Off");
        }