Jesteś pierwszym, który prosi o taką funkcję. Jednym ze sposobów osiągnięcia tego jest withClue. Coś jak:
withClue("NumberOfElements: ") { NumberOfElements() should be (5) }
To powinno spowodować wyświetlenie tego komunikatu o błędzie:
NumberOfElements: 10 nie było równe 5
Jeśli chcesz całkowicie kontrolować wiadomość, możesz napisać niestandardowy element dopasowujący. Lub możesz użyć asercji, takiej jak ta:
assert(NumberOfElements() == 5, "NumberOfElements should be 5")
Czy możesz wyjaśnić, jaki jest Twój przypadek użycia? Dlaczego jest tak, że 10 nie równało się 5 nie pasuje do tabaki i jak często miałeś taką potrzebę?
Oto, o co prosisz:
scala> import org.scalatest.matchers.ShouldMatchers._
import org.scalatest.matchers.ShouldMatchers._
scala> withClue ("Hi:") { 1 + 1 should equal (3) }
org.scalatest.TestFailedException: Hi: 2 did not equal 3
at org.scalatest.matchers.Matchers$class.newTestFailedException(Matchers.scala:150)
at org.scalatest.matchers.ShouldMatchers$.newTestFailedException(ShouldMatchers.scala:2331)
scala> class AssertionHolder(f: => Any) {
| def withMessage(s: String) {
| withClue(s) { f }
| }
| }
defined class AssertionHolder
scala> implicit def convertAssertion(f: => Any) = new AssertionHolder(f)
convertAssertion: (f: => Any)AssertionHolder
scala> { 1 + 1 should equal (3) } withMessage ("Ho:")
org.scalatest.TestFailedException: Ho: 2 did not equal 3
at org.scalatest.matchers.Matchers$class.newTestFailedException(Matchers.scala:150)
at org.scalatest.matchers.ShouldMatchers$.newTestFailedException(ShouldMatchers.scala:2331)
W ten sposób możesz napisać:
{ NumberOfElements() should be (5) } withMessage ("NumberOfElements:")