-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Projeto guiado II - Natalia Rosa #36
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from Livro import Livro | ||
|
||
class Biblioteca : | ||
def __init__(self): | ||
self.livros = [] | ||
|
||
def adicionar_livro(self, livro: Livro): | ||
if (not isinstance(livro, Livro) ): | ||
raise TypeError(f"Esperado Livro obtido valor {livro} do tipo {type(livro)}") | ||
self.livros.append(livro) | ||
|
||
def exibir_livros(self): | ||
return self.livros | ||
|
||
def emprestar_livro(self): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aqui ficou faltando o corpo do método, a lógica mesmo. E se deixar apenas a assinatura dessa forma dá erro e não executa |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class Livro: | ||
def __init__(self, nome, autor): | ||
self.nome = nome | ||
self.autor = autor | ||
self.esta_emprestado = False | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from Livro import Livro | ||
|
||
class Biblioteca : | ||
def __init__(self): | ||
self.livros = [] | ||
|
||
def adicionar_livro(self, livro: Livro): | ||
if (not isinstance(livro, Livro) ): | ||
raise TypeError(f"Esperado Livro obtido valor {livro} do tipo {type(livro)}") | ||
self.livros.append(livro) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class Livro: | ||
def __init__(self, nome, autor): | ||
self.nome = nome | ||
self.autor = autor | ||
self.esta_emprestado = False |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
from unittest import TestCase | ||
from Biblioteca import Biblioteca | ||
from Livro import Livro | ||
|
||
class TestBiblioteca(TestCase): | ||
def test_init_deve_passar(self): | ||
# Arrange / Act | ||
biblioteca = Biblioteca() | ||
|
||
# Assert | ||
self.assertIsInstance(biblioteca.livros, list) | ||
|
||
def test_adicionar_livro_deve_passar(self): | ||
# Arrange | ||
biblioteca = Biblioteca() | ||
nome_livro = "O mito da beleza" | ||
autor_livro = "Naomi Wolf" | ||
livro = Livro(nome_livro, autor_livro) | ||
|
||
# Act | ||
biblioteca.adicionar_livro(livro) | ||
|
||
# Assert | ||
self.assertEqual(1, len(biblioteca.livros)) | ||
|
||
def test_adicionar_livro_nao_deve_inserir_numero(self): | ||
# Arrange | ||
biblioteca = Biblioteca() | ||
livro = 1988 | ||
|
||
# Act / Assert | ||
with self.assertRaises(TypeError): | ||
biblioteca.adicionar_livro(livro) | ||
|
||
def test_exibir_livros(self): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ficou faltando nesse teste chamar o método exibir_livros e fazer a validação (assert) |
||
self.livros = [] | ||
print(Livro) | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from unittest import TestCase | ||
from Livro import Livro | ||
|
||
class TestLivro(TestCase): | ||
def test_init_deve_passar(self): | ||
# Arrange | ||
nome = "Calibã e a bruxa" | ||
autor = "Silvia Federici" | ||
|
||
# Act | ||
livro = Livro(nome, autor) | ||
|
||
# Assert | ||
self.assertEqual(nome, livro.nome) | ||
self.assertEqual(autor, livro.autor) | ||
self.assertEqual(False, livro.esta_emprestado) |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acho que esse arquivo foi copiado para cá por engano. :) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
from unittest import TestCase | ||
from Biblioteca import Biblioteca | ||
from Livro import Livro | ||
|
||
class TestBiblioteca(TestCase): | ||
def test_init_deve_passar(self): | ||
# Arrange / Act | ||
biblioteca = Biblioteca() | ||
|
||
# Assert | ||
self.assertIsInstance(biblioteca.livros, list) | ||
|
||
def test_adicionar_livro_deve_passar(self): | ||
# Arrange | ||
biblioteca = Biblioteca() | ||
nome_livro = "O mito da beleza" | ||
autor_livro = "Naomi Wolf" | ||
livro = Livro(nome_livro, autor_livro) | ||
|
||
# Act | ||
biblioteca.adicionar_livro(livro) | ||
|
||
# Assert | ||
self.assertEqual(1, len(biblioteca.livros)) | ||
|
||
def test_adicionar_livro_nao_deve_inserir_numero(self): | ||
# Arrange | ||
biblioteca = Biblioteca() | ||
livro = 1988 | ||
|
||
# Act / Assert | ||
with self.assertRaises(TypeError): | ||
biblioteca.adicionar_livro(livro) |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acho que esse arquivo foi copiado para cá por engano. :) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from unittest import TestCase | ||
from Livro import Livro | ||
|
||
class TestLivro(TestCase): | ||
def test_init_deve_passar(self): | ||
# Arrange | ||
nome = "Calibã e a bruxa" | ||
autor = "Silvia Federici" | ||
|
||
# Act | ||
livro = Livro(nome, autor) | ||
|
||
# Assert | ||
self.assertEqual(nome, livro.nome) | ||
self.assertEqual(autor, livro.autor) | ||
self.assertEqual(False, livro.esta_emprestado) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Boa! simples e objetivo