ScalaTest에서 사용자 지정 실패 메시지를 표시하는 방법은 무엇입니까?


86

ScalaTest에서 사용자 지정 실패 메시지를 표시하는 방법을 아는 사람이 있습니까?

예를 들면 :

NumberOfElements() should equal (5)

실패하면 다음 메시지를 표시합니다.

10이 5와 같지 않음

하지만 다음과 같은 더 설명적인 메시지를 원합니다.

NumberOfElements는 5 여야합니다.

답변:


101

당신은 그러한 기능을 가장 먼저 요청합니다. 이를 달성하는 한 가지 방법은 withClue를 사용하는 것입니다. 다음과 같은 것 :

withClue("NumberOfElements: ") { NumberOfElements() should be (5) }

다음과 같은 오류 메시지가 표시됩니다.

NumberOfElements : 10은 5와 같지 않습니다.

메시지를 완전히 제어하려면 사용자 정의 매처를 작성할 수 있습니다. 또는 다음과 같은 단언을 사용할 수 있습니다.

assert(NumberOfElements() == 5, "NumberOfElements should be 5")

사용 사례에 대해 자세히 설명해 주시겠습니까? 왜 10이 같지 않습니까?

요청하신 내용은 다음과 같습니다.

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:")

1
it () 테스트에 두 개 이상의 어설 션을 넣어야하고 둘 이상의 정수 비교가있는 상황이 있습니다. 어설 션이 실패한 로그를 보면 명확하지 않습니다.
Udayakumar Rayala 2011 년

그러나 그것을 지정하는 withClue 방법은 읽을 수 없습니다. 마지막에 메시지를 지정하는 방법이 있습니까?
Udayakumar Rayala 2011-06-23

1
마지막에는 matcher의 DSL로 수행 할 수 없지만 withClue 매개 변수를 반대 순서로 배치하는 메서드를 작성할 수 있습니다. 대답에 예를 추가하겠습니다.
Bill Venners 2011-06-23

12

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 을 참조하십시오.


3

withClue아무것도 가져 오거나 테스트 클래스에 추가하지 않고도 사용할 수 있습니다 .

withClue(s"Expecting distinct elements: ${elements.toList}") { elements.length shouldBe 3 }

이것은 Assertions클래스 에서 가져옵니다 .org.scalatest.Assertions#withClue

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.