Böyle bir özelliği ilk soran sizsiniz. Bunu başarmanın bir yolu withClue'dur. Gibi bir şey:
withClue("NumberOfElements: ") { NumberOfElements() should be (5) }
Bu size şu hata mesajını almalı:
NumberOfElements: 10, 5'e eşit değildi
Mesajı tamamen kontrol etmek istiyorsanız, özel bir eşleştirici yazabilirsiniz. Ya da şöyle bir iddia kullanabilirsiniz:
assert(NumberOfElements() == 5, "NumberOfElements should be 5")
Kullanım durumunuzun ne olduğunu açıklar mısınız? Neden 10 eşit değil 5 neden yeterli değil ve bu ihtiyacın ne kadar sık gerçekleşiyor?
İşte istediğin türden şeyler:
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)
Yani bu şekilde yazabilirsiniz:
{ NumberOfElements() should be (5) } withMessage ("NumberOfElements:")