def testCase9(self):
     Line = 'not a Copyright '
     Result = _IsCopyrightLine(Line)
     self.failIf(Result)
 def testCase6(self):
     Line = 'this is not Copyright line'
     Result = _IsCopyrightLine(Line)
     self.failIf(Result)
 def testCase8(self):
     Line = ' Copyright (c) line'
     Result = _IsCopyrightLine(Line)
     self.failIf(not Result)
 def testCase5(self):
     Line = 'this is Copyright         (line'
     Result = _IsCopyrightLine(Line)
     self.failIf(not Result)