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