本文整理汇总了Python中student.Student.setScore方法的典型用法代码示例。如果您正苦于以下问题:Python Student.setScore方法的具体用法?Python Student.setScore怎么用?Python Student.setScore使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类student.Student
的用法示例。
在下文中一共展示了Student.setScore方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestStudent
# 需要导入模块: from student import Student [as 别名]
# 或者: from student.Student import setScore [as 别名]
class TestStudent(unittest.TestCase):
"""Defines a unit test suite for the Student class."""
def setUp(self):
"""Sets up the test fixture. Scores are 1-5."""
self._student = Student("TEST", 5)
for index in xrange(1, 6):
score = self._student.setScore(index, index)
def tearDown(self):
"""Cleans up the test fixture after testing."""
pass
def testGetAverage(self):
"""Unit test for getAverage."""
average = self._student.getAverage()
self.assertEquals(3, average)
def testGetHighScore(self):
"""Unit test for getHighScore."""
high = self._student.getHighScore()
self.assertEquals(5, high)
def testGetName(self):
"""Test case for getName."""
self.assertEquals("TEST", self._student.getName())
def testGetScore(self):
"""Unit test for getScore."""
for index in xrange(1, 6):
score = self._student.getScore(index)
self.assertEquals(index, score)
self.assertRaises(IndexError,
self._student.getScore,
0)
self.assertRaises(IndexError,
self._student.getScore,
6)
def testSetScore(self):
"""Unit test for setScore."""
for index in xrange(1, 6):
score = self._student.setScore(index, index + 1)
for index in xrange(1, 6):
score = self._student.getScore(index)
self.assertEquals(index + 1, score)