コード例 #1
0
ファイル: testWindow.py プロジェクト: wangdyna/wxPython
 def testForegroundColourNames_wxWindowOnly(self):
     """SetForegroundColour, GetForegroundColour"""
     for test, actual in testColour.getColourEquivalentNames():
         self.assert_(self.testControl.SetForegroundColour(test))
                         # return True when background colour changed
         self.assertEquals(actual, self.testControl.GetForegroundColour())
         self.assert_(not self.testControl.SetForegroundColour(test))
コード例 #2
0
ファイル: testWindow.py プロジェクト: wangdyna/wxPython
 def testOwnForegroundColorNames_wxWindowOnly(self):
     """SetOwnForegroundColour, GetForegroundColour"""
     for test, actual in testColour.getColourEquivalentNames():
         self.testControl.SetOwnForegroundColour(test)
         self.assertEquals(actual, self.testControl.GetForegroundColour())