本文整理汇总了Python中student.Student.getName方法的典型用法代码示例。如果您正苦于以下问题:Python Student.getName方法的具体用法?Python Student.getName怎么用?Python Student.getName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类student.Student
的用法示例。
在下文中一共展示了Student.getName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testStudentClass
# 需要导入模块: from student import Student [as 别名]
# 或者: from student.Student import getName [as 别名]
def testStudentClass():
print(BOLD + "Testing student class." + END)
s = Student("name", "surname", "[email protected]", 9.50, "county")
custom_assert("Student contains correct given name.", s.getName() == "name")
custom_assert("Student contains correct given surname.", s.getSurname() == "surname")
custom_assert("Student contains correct given e-mail.", s.getEmail() == "[email protected]")
custom_assert("Student contains correct given grade.", s.getGrade() == 9.5)
custom_assert("Student contains correct given county.", s.getCounty() == "county")
try:
s = Student("name123", "surname", "[email protected]", 9.50, "county")
custom_assert("Testing for raising exception for invalid name.", False)
except ValueError:
custom_assert("Testing for raising exception for invalid name.", True)
try:
s = Student("name", "surname123", "[email protected]", 9.50, "county")
custom_assert("Testing for raising exception for invalid surname.", False)
except ValueError:
custom_assert("Testing for raising exception for invalid surname.", True)
try:
s = Student("name", "surname", "email", 9.50, "county")
custom_assert("Testing for raising exception for invalid email.", False)
except ValueError:
custom_assert("Testing for raising exception for invalid email.", True)
try:
s = Student("name", "surname", "[email protected]", "9asd.50", "county")
custom_assert("Testing for raising exception for invalid grade.", False)
except ValueError:
custom_assert("Testing for raising exception for invalid grade.", True)
示例2: studentDemo
# 需要导入模块: from student import Student [as 别名]
# 或者: from student.Student import getName [as 别名]
def studentDemo():
student1=Student("John","A","Doe",23,4.0,"Ames",True)
print student1.getName()
print student1.getGPA()
student1.modifyGPA(3.66)
print student1.getGPA()
print student1.hasHold()
student2=Student("John","A","Doe",23,4.0,"Ames",True)
student3=Student("John","B","Doe",23,4.0,"Ames",True)
print
print "Equality Test #1"
print str(student1) +"=="+ str(student2)
print (student1==student2)
print
print "Equality Test #2"
print str(student2) +"=="+ str(student3)
print (student1==student3)
print
print "Inequality Test"
print str(student1) +"<"+ str(student3)
print (student1<student3)
示例3: TestStudent
# 需要导入模块: from student import Student [as 别名]
# 或者: from student.Student import getName [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)