def test_get_category_obesidade_grau_3(self): result = getCategory(50) assert result == 'Obesidade Grau III'
def test_get_category_obesidade_grau_2(self): result = getCategory(36) self.assertEqual(result, 'Obesidade Grau II')
def test_get_category_peso_ideal(self): result = getCategory(20) self.assertEqual(result, 'Peso ideal')
def test_get_category_sobrepeso(self): result = getCategory(25) self.assertEqual(result, 'Sobrepeso')
def test_get_category_baixo_peso_grau_1(self): result = getCategory(17) self.assertEqual(result, 'Baixo peso Grau I')