Monday, October 8, 2012

Test Puzzle #1

Static testing is very important especially on the beginning of the project, but also important are code reviews during implementation both the product and the test scripts. On this blog will be some test puzzles so you can try by yourself catch some mistakes in  implementation in various, but popular, programming languages. 

Test this C++ code:
Difficulty: 1/4

#include <iostream>
 
using namespace std;
 
int main() {
        
        for(i = 0; i < 9; i++)
        {
                cout << i << endl;
        }
        return 0;
}

Why automated test?


Do you dream about fast, cheap and reliable testing? Do you want larger number of tests in time? You must implement automated tests in your project!

Automated software testing increase efficiency and saves your money. You can use automated smoke tests to check if latest build is complete, stable and if all features are run. These quick tests you can run on every support operating systems and/or browsers at the same time. If you want repeat these tests manually it will be costly and time consuming. Whats more automated tests can be run 24h/day.

Sunday, October 7, 2012

Hello Blog!


Hello Everyone,

This is first post on new testing blog - Smart Testing. I am Łukasz Jasiński, currently I work in BLStream as Quality Assurance Engineer and on this blog you will find information about software testing, especially test automation, mobile testing, agile in test, reviews books about testing and many many more. 
Please subscribe RSS feed and do not miss new posts.