def test_get_boolean_as_index(self):
		notes = NotesApplication()
		self.assertEqual(notes.get(True), None, msg="List not empty")
	def test_alpha(self):
		notes = NotesApplication()
		self.assertEqual(notes.get('sd'), None, msg="Supposed to be out of alphabee")
	def test_get_negative_index2(self):
		notes = NotesApplication()
		self.assertEqual(notes.get(-100400000000), None, msg="Supposed to be out of range or negative")
	def test_empty_get(self):
		notes = NotesApplication()
		self.assertEqual(notes.get(), None, msg="List not empty")
	def test_eidt(self):
		notes = NotesApplication()
		notes.create("Day one at Andela BC")
		notes.create("Day two at Andela BC")
		notes.edit(2, "it was fun")
		self.assertEqual(notes.get(2),"Day two at Andela BC it was fun")
author = raw_input("Enter your name\n")
note = NotesApplication(author)
while prompt != "quit":	
	#prompt = raw_input("Enter the content of your note")
	#note.create(prompt)
	prompt = raw_input("type\n * 'Quit' to quit\n * 'Create' to create new note\n * 'List' to list all your notes\n *'Get' to get a saved note based on its id\n * 'Search' to look for notes with contain your specified search strind \n* 'Edit' to edit and change an already saved note\n * 'Delete' to delete and note\n")
	
	if prompt.lower() == "create":
		prompt = raw_input("Enter the note you want to create\n")
		note.create(prompt)
	elif prompt.lower() =="list":
		note.list()
	elif prompt.lower() =="get":
		note.list()
		prompt = raw_input("Enter the ID of the note you want to get for\n")
		note.get(int(prompt))
	elif prompt.lower() =="search":
		prompt = raw_input("Type in the text you are looking \n")
		note.search(str(prompt))
	elif prompt.lower() == "edit":
		note.list()
		myid = raw_input("enter the 'ID' of the note you want to edit\n")
		prompt = raw_input("enter text here\n")
		note.edit(myid,str(prompt))
	elif prompt.lower() =='delete':
		note.list()
		prompt = raw_input("Enter the 'ID' of the note you want to delete\n")
		note.delete(int(prompt))
	else:
		print "Bad command, Try again"
		continue