#' Function to test if object returning/printing a string matches with a specified string
#'
#' @title Expected Complexity Class test function
#'
#' @param object The argument which returns a string to be tested against the expected string
#'
#' @param complexity.class A string denoting the expected complexity class
#'
#' @return null for expected complexity, else throws error.
#'
#' @details For more information regarding its implementation or functionality/usage, please check https://anirban166.github.io//Testing-functions/
#'
#' @export
#' @import testthat
#'
#' @examples
#' # Testing for equality of two string objects (denoting complexity classes):
#' expect_complexity_class("linear", "linear")
expect_complexity_class <- function(object, complexity.class)
{
actual.obj <- quasi_label(enquo(object), arg = "object")
expect(
actual.obj$val == complexity.class,
sprintf("Complexity mismatch: Expected %s complexity, instead of the predicted %s complexity from %s.", complexity.class, actual.obj$val, actual.obj$lab)
)
invisible(actual.obj$val)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.