def test_search_1(self):
		note = NotesApplication("author", ["note1", "note2", "note3"])
		search_note = note.search("text")
		self.assertListEqual(search_note, ["note1", "note2", "note3"], 
			                 msg = "Success: search should return all notes with 'text' string")