defmodule StringTests do use ExUnit.Case use TestHarness test "Strings" do answers = [ "hello", "hello ", "hello world", "An incredible day", "incredible", "banana", "banana", "String", "listen" ] test_all(Strings, answers) end end