public void Can_Be_Applied_To_String_But_Not_Object()
        {
            var formatter = new StringGelfMessageFormatter();

            Assert.That(formatter.CanApply("some string"), Is.True);
            Assert.That(formatter.CanApply(new Object()), Is.False);
        }