ScalaTest에서 사용자 지정 실패 메시지를 표시하는 방법은 무엇입니까?
ScalaTest에서 사용자 지정 실패 메시지를 표시하는 방법을 아는 사람이 있습니까?
예를 들면 :
NumberOfElements() should equal (5)
실패하면 다음 메시지를 표시합니다.
10이 5와 같지 않음
하지만 다음과 같은 더 설명적인 메시지를 원합니다.
NumberOfElements는 5 여야합니다.
당신은 그러한 기능을 가장 먼저 요청합니다. 이를 달성하는 한 가지 방법은 withClue를 사용하는 것입니다. 다음과 같은 것 :
withClue("NumberOfElements: ") { NumberOfElements() should be (5) }
다음과 같은 오류 메시지가 표시됩니다.
NumberOfElements : 10은 5와 같지 않습니다.
메시지를 완전히 제어하려면 사용자 정의 매처를 작성할 수 있습니다. 또는 다음과 같이 단언을 사용할 수 있습니다.
assert(NumberOfElements() == 5, "NumberOfElements should be 5")
사용 사례에 대해 자세히 설명해 주시겠습니까? 10이 같지 않은 이유는 5가 스너프에 미치지 못하는 이유이며, 이러한 요구를 얼마나 자주 받았습니까?
요청하신 내용은 다음과 같습니다.
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)
따라서 이렇게 작성할 수 있습니다.
{ NumberOfElements() should be (5) } withMessage ("NumberOfElements:")
2011 년 이후 새로운 방식 : Matchers
그리고 AppendedClue
특성. 또한 컬렉션 크기에는 몇 가지 기본 메시지가 있습니다.
import org.scalatest.{AppendedClues, Matchers, WordSpec}
class SomeTest extends WordSpec with Matchers with AppendedClues {
"Clues" should {
"not be appended" when {
"assertions pass" in {
"hi" should equal ("hi") withClue "Greetings scala tester!"
}
}
"be appended" when {
"assertions fail" in {
1 + 1 should equal (3) withClue ", not even for large values of 1!"
}
}
"not be needed" when {
"looking at collection sizes" in {
val list = List(1, 2, 3)
list should have size 5
}
}
}
}
출력은 다음과 같습니다.
SomeTest:
Clues
should not be appended
- when assertions pass
should be appended
- when assertions fail *** FAILED ***
2 did not equal 3, not even for large values of 1! (SomeTest.scala:15)
should not be needed
- when looking at collection sizes *** FAILED ***
List(1, 2, 3) had size 3 instead of expected size 5 (SomeTest.scala:21)
있습니다 List
크기의 메시지가 긴와 목록에 대한 크지 않다 .toString
출력.
자세한 정보 는 scaladoc 을 참조하십시오.
withClue
아무것도 가져 오거나 테스트 클래스에 추가하지 않고도 사용할 수 있습니다 .
withClue(s"Expecting distinct elements: ${elements.toList}") { elements.length shouldBe 3 }
이것은 Assertions
클래스 에서 가져옵니다 .org.scalatest.Assertions#withClue
참고 URL : https://stackoverflow.com/questions/6451530/how-to-show-custom-failure-messages-in-scalatest
'Programing' 카테고리의 다른 글
Git이 내 이메일 주소를 공개적으로 노출합니까? (0) | 2020.10.06 |
---|---|
Vimball 플러그인 (.vba 확장자 포함)을 설치하는 방법은 무엇입니까? (0) | 2020.10.06 |
REST API 호출을 어떻게 보호합니까? (0) | 2020.10.06 |
Windows 7에 Visual Studio 2013 설치 (0) | 2020.10.06 |
The recognizing power of “modern” regexes (0) | 2020.10.06 |