Question: function addChar ( input , character ) { if ( input . value = = null | | input.value = = 0 )

function addChar(input, character){
if(input.value == null || input.value =="0")
input.value = character
else
input.value += character
}
function cos(form){
form.display.value = Math.cos(form.display.value);
}
function sin(form){
form.display.value = Math.sin(form.display.value);
}
function tan(form){
form.display.value = Math.tan(form.display.value);
}
function sqrt(form){
form.display.value = Math.sqrt(form.display.value);
}
function ln(form){
form.display.value = Math.log(form.display.value);
}
function exp(form){
form.display.value = Math.exp(form.display.value);
}
function deleteChar(input){
input.value = input.value.substring(0, input.value.length -1)
}
var val =0.0;
function percent(input){
val = input.value;
input.value = input.value +"%";
}
function changeSign(input){
if(input.value.substring(0,1)=="-")
input.value = input.value.substring(1, input.value.length)
else
input.value ="-"+ input.value
}
function compute(form){
//if (val !==0.0){
// var percent = form.display.value;
// percent = pcent.substring(percent.indexOf("%")+1);
// form.display.value = parseFloat(percent)/100* val;
//val =0.0;
//} else
form.display.value = eval(form.display.value);
}
function square(form){
form.display.value = eval(form.display.value)* eval(form.display.value)
}
function checkNum(str){
for (var i =0; i < str.length; i++){
var ch = str.charAt(i);
if (ch <"0"|| ch >"9"){
if (ch !="/" && ch !="*" && ch !="+" && ch !="-" && ch !="."
&& ch !="(" && ch!=")" && ch !="%"){
alert("invalid entry!")
return false
}
}
}
return true
} In this part you are to develop a set of unit tests for a scientific calculator program written in JavaScript. At first run the program. Try to use it to calculate some expressions. Then try to understand how does it work. Finally:
* Write a total of 9 tests, organized into three sets.
* Each test set should target one functional element of the program (You cannot choose +,-,/ and *)
* Write the code that allows the program to pass your tests.
* Explain your approach in each test set. What was your strategy here?
* Capture screenshots or console logs of the code before and after it passed the tests, showing the output of the unit testing library. Shorten the output to the most important part, where it lists the number of tests passed and failed.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!