Exemplo n.º 1
0
        public void get_from_statebag()
        {
            var collection = new StateBag {
                { "appId", "123" }
            };

            var value = collection.GetValueOrDefault <string>("appId");

            Expect(value, Is.EqualTo("123"));
        }