public void ErrorIfMultipleValues() { var sc = new SlotContainer(element); Assert.Throws <InvalidOperationException>(() => { sc.GetSlotValue("authorInstitution"); }); }
public void HandlesSingleValue() { var sc = new SlotContainer(element); Assert.Equal("Hello World", sc.GetSlotValue("authorPerson")); }