Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6365151
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:15:24+00:00 2026-05-25T00:15:24+00:00

Is there something in Scalatest that will allow me to test the output to

  • 0

Is there something in Scalatest that will allow me to test the output to the standard out via a println statement?

So far I’ve mainly been using FunSuite with ShouldMatchers.

e.g. how do we check the printed output of

object Hi {
  def hello() {
    println("hello world")
  }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:15:25+00:00Added an answer on May 25, 2026 at 12:15 am

    The usual way to test print statements on the console is to structure your program a bit differently so that you can intercept those statements. You can for example introduce an Output trait:

      trait Output {
        def print(s: String) = Console.println(s)
      }
    
      class Hi extends Output {
        def hello() = print("hello world")
      }
    

    And in your tests you can define another trait MockOutput actually intercepting the calls:

      trait MockOutput extends Output {
        var messages: Seq[String] = Seq()
    
        override def print(s: String) = messages = messages :+ s
      }
    
    
      val hi = new Hi with MockOutput
      hi.hello()
      hi.messages should contain("hello world")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there something in the standard Android SDK that allows you to do image
Is there something that will have the logical effect of adding the inline position
Is there something that would allow me to edit (text only is fine) my
Is there something in EF 4.1 that allows for a reconnect to a database
Is there something in the Android developer guidelines that disuades developers from providing the
is there something like API built atop the standard ProcessBuilder for calling system programs?
Is there something similar to java's InvocationHandler in vala. That is, I want to
Is there something I can do like this (perhap via a plugin) if (
Is there something for Maven that I can use to create placeholders (e.g. a
Is there something like short if else = (cond) ? true : false statement,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.