Example #1
0
 /// <summary>
 /// テストケース定義を作成する。
 /// </summary>
 /// <param name="sheet">このテストケースが属すシート</param>
 /// <param name="caseName">テストケース名</param>
 /// <param name="director">ディレクタ</param>
 internal Case(Sheet sheet, string caseName, Director director)
 {
     this.sheet        = sheet;
     this.caseName     = caseName;
     this.dressingRoom = director.AssignActors(this);
 }
Example #2
0
 internal Sheet(Book book, String sheetName, Director director)
 {
     this.book      = book;
     this.sheetName = sheetName;
     this.director  = director;
 }