def testisNotDuplicate_03(self):
		dictionary={1:"a",2:"b",3:"c"};
		b = isNotDuplicate("c","a",dictionary)
		self.assert_(b == False)
	def testisNotDuplicate_01(self):
		dictionary={1:"a",2:"b",3:"c"};
		b = isNotDuplicate("d","a",dictionary)
		self.assert_(b == True)