public void HasRoleは引数のクラスがDictionaryでなければfalseを返す() { // setup Sheet sheet = TempActors.Book.GetSheet("HasRole"); DictionaryFactory factory = GetDictionaryFactory(sheet.GetCase("ロールあり")); // expect Assert.IsFalse(factory.HasRole <object>(null)); }
public void HasRoleは引数のクラスがDictionaryでありかつInitializeで指定されたテストケースにパラメタセクションがあればtrueを返す() { // setup Sheet sheet = TempActors.Book.GetSheet("HasRole"); DictionaryFactory factory = GetDictionaryFactory(sheet.GetCase("ロールあり")); // expect Assert.IsTrue(factory.HasRole <Dictionary <string, object> >(null)); }
public void HasRoleはInitializeで指定されたテストケースにパラメタセクションがなければfalseを返す() { // setup Sheet sheet = TempActors.Book.GetSheet("HasRole"); DictionaryFactory factory = GetDictionaryFactory(sheet.GetCase("ロールなし")); // expect Assert.IsFalse(factory.HasRole <object>(null)); }