[Fact]
public void DeveriaLancarExcecaoAoConsultarAgenciaPorId()
{
// Arrange
var idInexistente = 555;
// Act
var obterPorId = () => _repositorio.ObterPorId(idInexistente);
// Assert
Assert.Throws<FormatException>(obterPorId);
}