public void CreateCommand_WhenCalled_ReturnsInstanceOfACommand()
        {
            // ARRANGE
            string connectionString = Settings.Default.IntegrationTestConnection;
            var connection = new TestConnection(connectionString);

            // ACT
            var actualCommand = connection.CreateCommand();

            // ASSERT
            Assert.IsNotNull(actualCommand);
        }