v1
6/13/2021 by sheeptester -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
function getInput () {
  return Math.floor(Math.random() * 5) + 1
}

const results = []
delete caserun single casemove downdrag and drop case


ready



for (let i = 1000; i--;) {
  let result
  switch (getInput()) {
    case 1:
      result = 'ok'
      break
    case 2:
      result = 'nice'
      break
    case 5:
      result = 'very cool'
      break
    default:
      result = ':('
  }
  results.push(result)
}
delete caserun single casemove upmove downdrag and drop case


ready



for (let i = 1000; i--;) {
  results.push({
    1: 'ok',
    2: 'nice',
    5: 'very cool'
  }[getInput()] || ':(')
}
delete caserun single casemove updrag and drop case


ready



const obj = {
  1: 'ok',
  2: 'nice',
  5: 'very cool'
}

for (let i = 1000; i--;) {
  results.push(obj[getInput()] || ':(')
}
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN