Testing Tools
For our testing automation and testing environment, some time ago I did some research on the available tools and also evaluated some of them.
I thought, that the tools of list I found during the research (though I didn’t try all of them) would be worth sharing with readers:
- App Perfect
- Bugzilla Testopia
- J Meter
- Loadrunner
- Sahi
- Selenium
- Test Complete
- Test Director
- WAPT
- Winrunner/QTP
- Zephyr
I will try to add a small description for each of the testing tool in the above list.
PHP’s empty and isset function
The best way to check if a variable consists any value or is empty is to use empty function from PHP itself.
$myVar = 0;
if (empty($myVar)) {
echo '$myVar is either 0, empty, or not set at all';
}
Though, while coding in PHP it shouldn’t be confused with isset which checks if a variable is set or not set, whether that variable is empty.
$myVar = 0;
if (isset($myVar)) {
echo '$myVar is set even though it is empty';
}
Prayers and Hope
I was thinking to write something here but always couldn’t write. I am thinking of many things at the moment and I don’t know if I would be able to implement even one from them.
Let’s pray and hope that I could write a bit reqular here and continue on the projects I have started working on.
I have changed the theme so that it feels a bit fresh on my blog
Domain Specific Language QA
An interesting question and answers about DSL (Domain Specific Language) with Martin Fowler.
What is a Domain Specific Language?
A Domain Specific Language (DSL) is a computer programming language of limited expressiveness focused on a particular domain. Most languages you hear of are General Purpose Languages, which can handle most things you run into during a software project. Each DSL can only handle one specific aspect of a system.
Read complete question and answers here.
AgilePakistan First Meeting
AgilePakistan is going to have its first meeting on Saturday, 23rd August 2008 at 4PM.
For further information about this meeting please check this.
Everyone is encouraged to join us in this meeting.
What Is A Blog?
I have been following a few blogs from their beginning. Daily Blog Tips is one such excellent blog, I find it very useful as it gives me the knowledge I need to have about today’s phenomenon “Blogs”.
Yesterday Daniel Scocco of Daily Blog Tips posted an article on “What is A Blog”, which is a group writing project. I found this question of “What is A Blog” very interesting as I recently started blogging, I also wanted to share with you that what do I think of “What is A Blog”?
I think it is a platform for me:
- To express myself
- To share the experience I have
- To share the knowledge I have
- To learn from other people
As it is a group writing project, I am looking forward to read very interesting “What is A Blog” from other participants.
Final Project For CS201
Our final term for this semester is going to start in the last week of August. I am also working on the final project for my course CS201. The project I am working on is a reservation system for a bus company. It is required to have:
- New Reservation
- Update Reservation
- Delete Reservation
- Search Reservation
The deadline for this project is 9th August. So I will be busy in this and will try to post the source code, once I get the marking on this project.
I am writing this project in C/C++ and using notepad++ for writing C/C++ code.