コード例 #1
0
ファイル: HomeworkTests.cs プロジェクト: terryh/SFHomework
 public MutationTest()
 {
     _goodStudentFind = new GoodStudentFind();
     _students        = new List <Student>
     {
         // name, score, bmi
         new Student("Nick", 95.0f, 22.0f),
         new Student("Jack", 79.0f, 18.0f),
         new Student("John", 80.0f, 26.0f),
         new Student("Mary", 77.0f, 25.0f),
     };
 }
コード例 #2
0
ファイル: HomeworkTests.cs プロジェクト: terryh/SFHomework
 public CombinatorialTest()
 {
     _goodStudentFind = new GoodStudentFind();
     _students        = new List <Student>
     {
         // name, score, bmi
         new Student("Nick", 95.0f, 22.0f),
         new Student("Jack", 79.0f, 23.0f),
         new Student("Clark", 79.0f, 17.0f),
         new Student("Peter", 82.0f, 17.0f),
         new Student("John", 80.0f, 26.0f),
         new Student("Mary", 77.0f, 25.0f),
     };
 }