public void AddQueryStringMapping1ThrowsWithNullThis()
        {
            MediaTypeFormatter formatter = null;

            Assert.ThrowsArgumentNull(
                () => formatter.AddQueryStringMapping("name", "value", "application/xml"),
                "formatter"
                );
        }