I need to write a test case for functions that do simple math problems. One of the test cases is having no inputs or empty inputs. I've tried most things but none seem to work. This is the format of the test case:
// copy ; x, y, length ; expected y
duplicus ; () , () , 0 ; 0 // empty
duplicus ; " , " , 0 ; 0 // empty
duplicus ; , , 0 ; 0 // empty
duplicus ; , , 0 ; 0 // empty
duplicus ; -1 , -1 , 0 ; 0 // empty