示例#1
0
 def testCase8(self):
     Line = ' Copyright (c) line'
     Result = _IsCopyrightLine(Line)
     self.failIf(not Result)
示例#2
0
 def testCase9(self):
     Line = 'not a Copyright '
     Result = _IsCopyrightLine(Line)
     self.failIf(Result)
示例#3
0
 def testCase6(self):
     Line = 'this is not Copyright line'
     Result = _IsCopyrightLine(Line)
     self.failIf(Result)
示例#4
0
 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)