по какой-то причине я не могу понять синтаксис правильно.
Как вы выполняете следующий тест? У меня просто есть простой метод TestThrowexception, и я хочу, чтобы он прошел
что я тут не так делаю?
[TestFixture]
public class ExceptionsTests
{
[Test]
public void When_calling_my_method_it_should_throw_an_exception()
{
//THIS DOES NOT WORK
Person person=new Person();
PersonException ex = Assert.Throws<PersonException>(delegate { person.ThrowPersonException(); },
Has.Property("Message").EqualTo("Test person Exception throw"));
}
}
public class Person
{
public void ThrowException()
{
throw new Exception("Test Exception thrown");
}
public void ThrowPersonException()
{
throw new CustomerException("Test person Exception thrown");
}
public void ThrowArgumentException(string myParam)
{
throw new ArgumentException("Argument Exception", myParam);
}
}
[Serializable]
public class PersonException : Exception
{
public PersonException()
{
}
public PersonException(string message)
: base(message)
{
}
public PersonException(string message, Exception inner)
: base(message, inner)
{
}
protected PersonException(
SerializationInfo info,
StreamingContext context)
: base(info, context)
{
}
}
}