def testCase8(self): Line = ' Copyright (c) line' Result = _IsCopyrightLine(Line) self.failIf(not Result)
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 testCase5(self): Line = 'this is Copyright (line' Result = _IsCopyrightLine(Line) self.failIf(not Result)
def testCase7(self): Line = "Copyright (c) line" Result = _IsCopyrightLine(Line) self.failIf(not Result)
def testCase4(self): Line = "this is Copyright( line" Result = _IsCopyrightLine(Line) self.failIf(not Result)
def testCase3(self): Line = "this is not aCopyright ( line" Result = _IsCopyrightLine(Line) self.failIf(Result)