-
Notifications
You must be signed in to change notification settings - Fork 0
/
testeComputador.py
29 lines (23 loc) · 924 Bytes
/
testeComputador.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
from should_dsl import should, should_not
from maquina import Maquina
from computador import Computador
class testeComputador(unittest.TestCase):
def test_obter_computador(self):
computador = Computador(1,'PC',512,4088)
computador.hd |should| equal_to(512)
computador.memoria |should| equal_to(4088)
computador.destruir_maquina()
def test_alterar_computador(self):
computador = Computador(1,'PC',512,4088)
(computador._validar_valor,0) |should_not| throw(ValueError)
(computador._validar_valor,-1) |should| throw(ValueError)
computador.hd = 1024
computador.hd |should| equal_to(1024)
computador.memoria = 1025
computador.memoria |should| equal_to(1025)
computador.destruir_maquina()
if __name__ == "__main__":
unittest.main()