How to Write user defined functions?
Answers were Sorted based on User's Feedback
Answer / jinsha
First we have to define the function and then we have to
call the function.
Eg:
to define a function
integer biger(integer a,integer b)
if (a>b)
return a
else
return b
save the file with .inc extension as x.inc
Now to call a function
Use x.inc
test case userfn1()
int a=10
int b=5
int c=biger(a,b)
print("{c}is greater")
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kkamalay
Hi Padmaja,
with silktest you can write user defined functions as same
as c, c++
<returntype> <functionName> (Arguments list)
--------------
------------
statements
return
eg:1
Integer simpleAdd(Integer a, Integer b)
Integer c=0
c=a+b
return c
eg: 2
Void PrintStatement(String msg)
Print(msg)
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / suresh
USER defined function can be written as we write them in C/
the syntax:
return type functionname(list of arguments)
]//@@@@@@@@
simple example
//@@@@@@@@@@
int sum(int a ,int b)
int sum
sum=a+b
return sum
Is This Answer Correct ? | 3 Yes | 3 No |
How to include a test case into a testplan?
What is the standard flow of execution of a test case?
How can you get the moving contents of flash image using silktest.
How do you identify an exception is silk?
What are the important aspects of a test case?
What is a test frame?
How to run a test case from a test script file?
What is silktest agent?
Want to lear from basic about silktest and how to write scripts. Please let me know if you know any website
What is a silktest testplan?
Can silktest switch browsers automatically?
can we test the application by inserting checkpoints using silktest as we do in qtp and winrunner and also what are the automation frameworks in silktest