class TestParticipant(unittest.TestCase):

    def setUp(self):
        self.participant = Participant("PartName");

    def testParticipantInit(self):
       self.assertEqual(self.participant.getName(), "PartName")
Beispiel #2
0
 def setUp(self):
     self.participant = Participant("PartName")
 def setUp(self):
     self.participant = Participant("PartName");
Beispiel #4
0
class TestParticipant(unittest.TestCase):
    def setUp(self):
        self.participant = Participant("PartName")

    def testParticipantInit(self):
        self.assertEqual(self.participant.getName(), "PartName")
Beispiel #5
0
 def setUp(self):
     self.match = Match("MatchName")
     self.participant1 = Participant("Part1")