public void When_session_is_null_Then_should_throw()
        {
            IDatabaseCommands databaseCommands = null;

            Assert.Throws <InvalidOperationException>(() => databaseCommands.DeleteRevision("key", 1, null));
        }