Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions exercicios/Biblioteca.py
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):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Boa! simples e objetivo

return self.livros

def emprestar_livro(self):
Copy link
Collaborator

Choose a reason for hiding this comment

The 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

6 changes: 6 additions & 0 deletions exercicios/Livro.py
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

Empty file added exercicios/__init__ copy.py
Empty file.
10 changes: 10 additions & 0 deletions exercicios/para-casa/Biblioteca.py
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)
5 changes: 5 additions & 0 deletions exercicios/para-casa/Livro.py
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
Empty file.
File renamed without changes.
40 changes: 40 additions & 0 deletions exercicios/testBiblioteca.py
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):
Copy link
Collaborator

Choose a reason for hiding this comment

The 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)



16 changes: 16 additions & 0 deletions exercicios/testLivro.py
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)
33 changes: 33 additions & 0 deletions testBiblioteca.py
Copy link
Collaborator

Choose a reason for hiding this comment

The 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)
16 changes: 16 additions & 0 deletions testLivro.py
Copy link
Collaborator

Choose a reason for hiding this comment

The 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)