Beispiel #1
0
	def test_if_note_id_is_an_integer(self):
		"""Testing if the note id is indeed not an integer"""
		test_if_int = NotesApplication('',[])
		concl = test_if_int.get_note_id(1)
		self.assertEqual(type(concl),str)
		"""This is an expected failure because it was type cast to a string"""