All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalatestplus.junit5.Resources.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2001-2023 Artima, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.scalatestplus.junit5

import java.util.ResourceBundle
import java.text.MessageFormat

private[junit5] object Resources {

  lazy val resourceBundle = ResourceBundle.getBundle("org.scalatestplus.junit5.MessageBundle")

  def makeString(resourceName: String, args: Array[Any]): String = {
    val raw = resourceBundle.getString(resourceName)
    formatString(raw, args)
  }

  def formatString(rawString: String, args: Array[Any]): String = {
    val msgFmt = new MessageFormat(rawString)
    msgFmt.format(args.toArray)
  }

  def testNotFound(param0: Any): String = makeString("testNotFound", Array(param0))

  def rawTestNotFound: String = resourceBundle.getString("testNotFound")

  def testSucceededIconChar(): String = resourceBundle.getString("testSucceededIconChar")

  def rawTestSucceededIconChar: String = resourceBundle.getString("testSucceededIconChar")

  def iconPlusShortName(param0: Any, param1: Any): String = makeString("iconPlusShortName", Array(param0, param1))

  def rawIconPlusShortName: String = resourceBundle.getString("iconPlusShortName")

  def jUnitTestFailed(): String = resourceBundle.getString("jUnitTestFailed")

  def rawJUnitTestFailed: String = resourceBundle.getString("jUnitTestFailed")

  def runAborted(): String = resourceBundle.getString("runAborted")

  def rawRunAborted: String = resourceBundle.getString("runAborted")

  def invalidNumThreads(param0: Any): String = makeString("invalidNumThreads", Array(param0))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy