
Search In
Test Planning and Control:-
The first phase of STLC is a combination of two activities, test planning and other one is test control. Test planning involves verifying the mission of testing and defining the objectives of testing. In order to specify t
JavaScript Assignment Operators
The Assignment Operator is used to assign the value of the right operand to the left operand. The key rule for this operator is that it always assign value from right to left.
The Assignment operator (=) works as (x=
Javascript Undefined Values
In a program the variables declared gets the value at the time of the variable declaration or get assigned after some calculation or received by the user input, but the variables which are not assigned any value at the ti
Access data from mysql using PDO includes the following steps:
connect to a MySQL database:
$db_conn = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);
create a select statement and then execute it by using query() method.
$s
What is Volume Testing ?
Volume testing comes under the non-functional testing group. Volume testing tests an application/software for a confirmed data volume or any product with specific quantity of facts or data. For exp, if we want to volume test
The default code of cakephp paginator sorting label.
<?php echo $this->Paginator->sort('first_name'); ?>
We can change it as follows:
echo $this->Paginator->sort('first_name', 'First Name');
Explanation:
Here we can change the
What is error guessing approach or techniques ?
Error guessing technique or approach comes under the Experience-Based testing techniques. Error guessing is an approach that should regularly be used as a supplement to another more
conventional appr
Static Initialization Block-SIB
The Static members of the class are stored inside the Class Memory space in heap. The Static members can be accessed directly with the class name there is no need to create objects to access them.
A block of code use
In Javascript , getTime() method return the numeric value ( in milliseconds ) corresponding to the time for the specified data according to universal time . Through this method you can assign a date and time to another Date Object. Basically this me
In spring security bydefault the csrf protect in on. As a result it asks for token during login and other requests. Although its not a good practise to disable the protection but we can do it. As we can see in the code below,
http.csrf().disable() ,
