public void value_as_t_by_name()
        {
            var theValue = Guid.NewGuid();
            var theKey   = "some key";

            theRawRequest[theKey] = theValue;

            ClassUnderTest.As <IBindingContext>().Data.ValueAs <Guid>(theKey).ShouldEqual(theValue);
        }