當前位置: 首頁>>代碼示例>>Python>>正文


Python Rectangle.set_priority方法代碼示例

本文整理匯總了Python中rectangle.Rectangle.set_priority方法的典型用法代碼示例。如果您正苦於以下問題:Python Rectangle.set_priority方法的具體用法?Python Rectangle.set_priority怎麽用?Python Rectangle.set_priority使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在rectangle.Rectangle的用法示例。


在下文中一共展示了Rectangle.set_priority方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: RectangleTestCase

# 需要導入模塊: from rectangle import Rectangle [as 別名]
# 或者: from rectangle.Rectangle import set_priority [as 別名]
class RectangleTestCase(unittest.TestCase):
    '''Test creation and use of a Rectangle.'''
    
    def setUp(self):
        self.rect = Rectangle(0, 150, 200, 50, media.forestgreen, 1)
        
    def tearDown(self):
        self.rect = None
            
    def testString(self):
        assert str(self.rect) == 'Rectangle @ ( 0 , 150 ) height = 50, ' + \
               'width = 200', 'mismatch in string version of rectangle'
        
    def testGetPriority(self):
        assert self.rect.get_priority() == 1, \
               'mismatch in initial priority value'

    def testSetGetPriority(self):
        self.rect.set_priority(10)
        assert self.rect.get_priority() == 10, \
               'mismatch in new priority value'
開發者ID:wangchi9,項目名稱:undergraduate-projects,代碼行數:23,代碼來源:test_shapes.py


注:本文中的rectangle.Rectangle.set_priority方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。