TestDirector offers an organized framework for testing applications before they are deployed. Since test plans evolve with new or modified application requirements, you need a central data repository for organizing and
managing the testing process. TestDirector guides you through the requirements specification, test planning, test execution, and defect tracking phases of the testing process.
The TestDirector testing process includes four phases:
Specifying Planning Running Tracking
Reqirements Tests Tests Tests
Saturday, September 11, 2010
Introducing TestDirector
Application testing is a complex process. TestDirector helps you organize and manage all phases of the application testing process, including specifying testing requirements, planning tests, executing tests, and tracking
defects.
In this lesson, you will learn about:
➤ The TestDirector Testing Process
➤ Starting TestDirector
➤ The TestDirector Window
➤ The Mercury Tours Sample Web Site
defects.
In this lesson, you will learn about:
➤ The TestDirector Testing Process
➤ Starting TestDirector
➤ The TestDirector Window
➤ The Mercury Tours Sample Web Site
Wednesday, September 8, 2010
Test Plan
Test plan is a strategic document in order to do testing. it consists of test plan id, reference documents,Revision history,Test schedules,Test Item,Test process,Resources,Risks and mitigations,Training..those type of info..
Monday, September 6, 2010
What exactly ad-hoc testing is? At what situation .
It's a random testing It means testing a application without proper test
plan.It's carried out at the end of the project when all the test cases
are executed.To check the application randomly. or it's carried out in CMM 1 level company where test are executed without planning
Testing the application randomly beyond the requirement to avoid the bug flow at the end users place is called ADHoc TESTING.
its a negative type of testing
we will never write any test cases for ADHOC.
if u found any bugs in adhoc try to convert into functionality/integration/system level bug
to re-test that bug we are going to write the Test Case because in future we may expect that bug.
its a negative type of testing
we will never write any test cases for ADHOC.
if u found any bugs in adhoc try to convert into functionality/integration/system level bug
to re-test that bug we are going to write the Test Case because in future we may expect that bug.
What is acceptance testing?
In software development, user acceptance testing (UAT) - also called beta testing, application
testing, and end user testing - is a phase of software development in
which the software is tested in the "real world" by the intended
audience. UAT can be done by in-house testing in which volunteers or
paid test subjects use the software or, more typically for
widely-distributed software, by making the test version available for
downloading and free trial over the Web. The experiences of the early
users are forwarded back to the developers who make final changes before
releasing the software commercial.
Most of the time it is tested by beta tester or end user(depends on company policy) to know if the application is working as expected.
Testing which is done to enable the customer/user whether to accept the product or not. it is done by end users.
What is meant by cyclomatic complexity? Explain With Example?
It is used to measure the complexity of software
process& it<br>is used to measure how many test cases are
passed in the<br>application
Cyclomatic Complaxity comes under white box testing.<br>It means
best path searching. To measure logical Complaxity <br>of a
prog.<br>for
ex.<br><br>1-main()<br>2-if(a>1)<br>3{<br>------<br>------<br>}<br>4-else<br>5-{<br>-------<br>-------<br>}<br>}<br><br>Now
a diagram would drawn from top
as it would start from 1.<br>underneath it would be 2. and 2 would
have two edges i.e. 3 <br>and 4. they would futher combine to
form 5.<br><br>2,3,4 & 5 would make close region while
outside would <br>become open region..<br><br>the
arrows joining would be edges 2 would become predicate <br>node.
while others are simple nodes.<br><br>it has got a
formula:<br><br>v(g)=Node-edges+2<br>v(g)=
5-5+2<br>v(g)=2<br>v(g)= predicate
node+1<br>v(g)=1+1<br>v(g)=2
How do you use boundary value analysis testing for evaluating the password ?
Boundary Value Analysis for testing password.<br><br>As per rule boundary
value Analysis must have SIx Conditions MIN-1, MIN,
MIN+1<br>MAX-1, MAX, MAX+1<br><br>For
user id when can apply same for password it works like
this<br>lets have condition password min 4 char max 10 char in
length.password can be any thing since password depends on
userid.<br><br>MIN-1<br>User ID :
master<br>password : abc<br>result :Should not accept should
popup msg "enter Correct
Password".<br><br>MIN<br>User ID :
Master<br>password : abcd<br>result : Should
accept<br><br>MIN+1<br>User ID :
Master<br>password : abcd<br>result : Should
accept<br><br>MAX-1<br>User ID :
Master<br>password : 123456789<br>result : Should
accept<br><br>MAX<br>User ID :
Master<br>password : abcd123456<br>result : Should
accept<br><br>MAX+1<br>User ID :
Master<br>password : abcd1234567<br>result : Should not
accept should popup msg "enter Correct Password".
What are stubs and drivers used for in white-box testing?
Stubs and Drivers are the small programs used in the integration testing
such that these programs are placed where the output of undeveloped
modules. that is in some cases, some of the non priority module's output
is needed in the project. then
to get out of that situation, we write a small program such that it
generates exactly similar output of the un-generated module. these
programs are called stubs and drivers.
Here stub is used when we are testing the application in top-down approach.
and driver is used when we are testing the application in bottom-top approach.
Here stub is used when we are testing the application in top-down approach.
and driver is used when we are testing the application in bottom-top approach.
What are the Methods of Black box Testing?
Graph Based Testing Methods:
Each and every application is build up of some objects. All such objects are identified and graph is prepared. From this object graph each object relationship is identified and test cases written accordingly to discover the errors.
Error Guessing:
This is purely based on previous experience and judgment of tester. Error Guessing is the art of guessing where errors can be hidden. For this technique there are no specific tools, writing the test cases that cover all the application paths.
Boundary Value Analysis:
Many systems have tendency to fail on boundary. So testing boundry values of application is important. Boundary Value Analysis (BVA) is a test Functional Testing technique where the extreme boundary values are chosen. Boundary values include maximum, minimum, just inside/outside boundaries, typical values, and error values.
Extends equivalence partitioning
Test both sides of each boundary
Look at output boundaries for test cases too
Test min, min-1, max, max+1, typical values
Each and every application is build up of some objects. All such objects are identified and graph is prepared. From this object graph each object relationship is identified and test cases written accordingly to discover the errors.
Error Guessing:
This is purely based on previous experience and judgment of tester. Error Guessing is the art of guessing where errors can be hidden. For this technique there are no specific tools, writing the test cases that cover all the application paths.
Boundary Value Analysis:
Many systems have tendency to fail on boundary. So testing boundry values of application is important. Boundary Value Analysis (BVA) is a test Functional Testing technique where the extreme boundary values are chosen. Boundary values include maximum, minimum, just inside/outside boundaries, typical values, and error values.
Extends equivalence partitioning
Test both sides of each boundary
Look at output boundaries for test cases too
Test min, min-1, max, max+1, typical values
What are the tools used for Black Box testing?
Black box testing tools are
mainly record and playback tools. These tools are used for regression
testing that to check whether new build has created any bug in previous
working application functionality.
White Box Testing
This testing methodology looks under the covers and into the subsystem of an application. Whereas black-box testing concerns itself exclusively with the inputs and outputs of an application, white-box testing enables you to see what is happening inside the application. Whitebox testing provides a degree of sophistication that is not available with black-box testing as the tester is able to refer to and interact with the objects that comprise an application rather than only having access to the user interface. An example of a white-box system would be in-circuit testing where someone is looking at the interconnections between each component and verifying that each internal connection is working properly. Another example from a different field might be an auto-mechanic who looks at the inner-workings of a car to ensure that all of the individual parts are working correctly to ensure the car drives properly.
Black Box Testing
This testing methodology looks at what are the available inputs for an application and what the expected
outputs are that should result from each input. It is not concerned with the inner workings of the application, the process that the application undertakes to achieve a particular output or any other internal aspect of the
application that may be involved in the transformation of an input into an output. Most black-box testing tools employ either coordinate based interaction with the applications graphical user interface (GUI) or image recognition. An example of a black-box system would be a search engine.You enter text that you want to search for in the search bar, press “Search” and results are returned to you. In such a case, you do not know or see the specific process that is being employed to obtain your search results, you simply see that you provide an input – a search term – and you receive an output – your search results.
outputs are that should result from each input. It is not concerned with the inner workings of the application, the process that the application undertakes to achieve a particular output or any other internal aspect of the
application that may be involved in the transformation of an input into an output. Most black-box testing tools employ either coordinate based interaction with the applications graphical user interface (GUI) or image recognition. An example of a black-box system would be a search engine.You enter text that you want to search for in the search bar, press “Search” and results are returned to you. In such a case, you do not know or see the specific process that is being employed to obtain your search results, you simply see that you provide an input – a search term – and you receive an output – your search results.
Sunday, August 15, 2010
BVA & ECP
Equivalence Class Partition (ECP): Means dividing the input Domain into groups and name these groups as Valid and Invalid. By Using these groups we can derive the Test Cases. Boundary Value Analysis (BVA): Means finding the boudaries for given particular value. By Using these boundaries there is maximum possibilities of finding Bugs/Defects in an Application. Example: In an Application User ID takes 5 to 10 Alphabets. It is the Customer required. Solution: User ID: 5-10 Alphabets ECP: Valid Invalid A-Z 0-9 a-z Special Charecters Blank Field BVA: Min = 5 Pass Min-1 = 3 Fail Min+1 = 6 Pass Max = 10 Pass Max-1 = 9 Pass Max+1 = 11 Fail
Integration Testing Modules
Bottom Up Testing is an approach to integrated testing where
the lowest level components are tested first, then used to facilitate
the testing of higher level components. The process is repeated until
the component at the top of the hierarchy is tested.
All the bottom or low-level modules, procedures or functions are integrated and then tested. After the integration testing of lower level integrated modules, the next level of modules will be formed and can be used for integration testing. This approach is helpful only when all or most of the modules of the same development level are ready. This method also helps to determine the levels of software developed and makes it easier to report testing progress in the form of a percentage.
Top Down Testing is an approach to integrated testing where the top integrated modules are tested and the branch of the module is tested step by step until the end of the related module.
Sandwich Testing is an approach to combine top down testing with bottom up testing.
The main advantage of the Bottom-Up approach is that bugs are more easily found.
With Top-Down, it is easier to find a missing branch link.
All the bottom or low-level modules, procedures or functions are integrated and then tested. After the integration testing of lower level integrated modules, the next level of modules will be formed and can be used for integration testing. This approach is helpful only when all or most of the modules of the same development level are ready. This method also helps to determine the levels of software developed and makes it easier to report testing progress in the form of a percentage.
Top Down Testing is an approach to integrated testing where the top integrated modules are tested and the branch of the module is tested step by step until the end of the related module.
Sandwich Testing is an approach to combine top down testing with bottom up testing.
The main advantage of the Bottom-Up approach is that bugs are more easily found.
With Top-Down, it is easier to find a missing branch link.
Friday, August 13, 2010
Mahesh-Ramesh Combo After 3 Idiots
Wednesday, August 11, 2010
Khaleja Unda......
మహేà°·్ à°¬ాà°¬ు à°¤ాà°œాà°—ా 'à°–à°²ేà°œా à°šూà°ªిà°¦్à°¦ాం..à°•ుà°®్à°®ేà°¦్à°¦ాం à°°ంà°¡ి' à°…à°¨ే
à°¸్à°²ోà°—à°¨్ à°¤ో అలరింà°šà°¨ుà°¨్à°¨ాà°¡ు. ధమ్à°¸్ à°…à°ª్ à°¤ో à°•à°²ిà°¸ి à°–à°²ేà°œా à°ª్à°°à°®ోà°·à°¨్ à°šేయటాà°¨ిà°•ి à°ˆ
à°ªంà°š్ à°²ైà°¨్ à°¨ి à°Žà°¨్à°¨ుà°•ుà°¨్à°¨ాà°°ు. à°ˆ à°®ేà°°à°•ు ఆయన à°ªుà°Ÿ్à°Ÿిà°¨ à°°ోà°œైà°¨(à°¸ోమవాà°°ం)à°¶్à°°ీà°•ాà°°ం
à°šుà°Ÿ్à°Ÿాà°°ు. à°†ంà°§్à°°à°ª్à°°à°¦ేà°¶్ à°µిà°¨ిà°¯ోà°—à°¦ాà°°ుà°² à°•ోà°¸ం à°ª్à°°à°¤్à°¯ేà°•ంà°—ా à°°ూà°ªొంà°¦ింà°šిà°¨ 'థమ్à°¸్ à°…à°ª్ à°•à°²ేà°œా à°‰ంà°¦ా' à°ª్à°°à°šాà°° à°•ాà°°్యక్à°°à°®ాà°¨్à°¨ి à°¸ంà°¸్à°¥ à°¬్à°°ాంà°¡్ à°…ంà°¬ాà°¸ిà°¡à°°్ à°—ా మహేà°·్à°¬ాà°¬ు à°²ాంఛనంà°—ా à°ª్à°°ాà°°ంà°ింà°šాà°°ు. à°ˆ à°¸ందర్à°ంà°—ా మహేà°·్ à°®ాà°Ÿ్à°²ాà°¡ుà°¤ూ...థమ్సప్ à°¤ో à°¨ాà°¦ి à°¨ాà°²ుà°—ేà°³్à°² à°…à°¨ుà°¬ంà°§ం. à°Žంà°¤ో à°®ంà°¦ి à°¸ూపర్ à°¸్à°Ÿాà°°్ లతో వర్à°•్à°šేà°¸ిà°¨ à°¬్à°°ాంà°¡్ à°¤ో à°¨ేà°¨ు à°•ూà°¡ా పని à°šేయడం à°šాà°²ా ఆనంà°¦ంà°—ా à°‰ంà°¦ి. à°šి à°¨్నప్పటి à°¨ుంà°¡ి à°•ూà°¡ా à°ˆ à°¬్à°°ాంà°¡్à°¤ో à°•్à°²ోà°œ్à°—ా à°…à°¸ోà°¸ిà°¯ేà°Ÿ్ à°…à°¯్à°¯ాà°¨ు. à°µీà°°ి à°¯ాà°¡్ à°•్à°¯ాంà°ªెà°¯ిà°¨్à°²ు à°…à°¨్à°¨ీ à°¯ాà°•్à°·à°¨్ à°“à°°ిà°¯ెంà°Ÿెà°¡్à°—ా à°‰ంà°Ÿాà°¯ి. à°¨ా à°¸ిà°¨ిà°®ాà°²ు à°•ూà°¡ా à°…à°²ాà°—ే à°‰ంà°Ÿాà°¯ి à°•ాబట్à°Ÿి à°ªెà°¦్దగా ఇబ్à°¬ంà°¦ి పడ à°²ేà°¦ు. à°…à°²ాà°—ే 'à°–à°²ేà°œా à°‰ంà°¦ా..?' à°•ాంà°Ÿెà°¸్à°Ÿ్ à°¦్à°µాà°°ా 30 à°®ంà°¦ి à°…à°ిà°®ాà°¨ుà°²ు à°¨ాà°¤ో à°•à°²ిà°¸ి à°¨ా తరుà°µాà°¤ి à°¸ిà°¨ిà°®ాà°²ో నటింà°šే అవకాà°¶ం à°ªొంà°¦ుà°¤ాà°°ు à°…à°¨ి à°šెà°ª్à°ªాà°°ు. ఇక 'థమ్à°¸్ à°…à°ª్ à°•à°²ేà°œా à°‰ంà°¦ా'à°²ో à°ªాà°²్à°—ొà°¨ాà°²ంà°Ÿే ఇలా à°šేà°¯ాà°²ి...థమ్à°¸్ à°…à°ª్ à°¬ాà°Ÿిà°²్ à°®ూతపై, à°ªెà°Ÿ్ à°¬ాà°Ÿిà°²్ à°²ేà°¬ుà°²్ à°µెà°¨ుà°• à°‰ంà°¡ే à°¤ొà°®్à°®ిà°¦ి à°…ంà°•ెà°² à°•ోà°¡్ à°•ోà°¸ం à°šూà°¡ంà°¡ి. మహేà°·్ à°…à°¨ి à°Ÿైà°ª్ à°šేà°¸ి à°¸్à°ªేà°¸్ ఇచ్à°šి 'à°¯ూà°¨ిà°•్ à°•ోà°¡్'à°¤ో 09869 98 98 98à°•ు à°Žà°¸్ à°Žం à°Žà°¸్ à°šేà°¯ాà°²ి. à°Žà°¸్ à°Žంà°Žà°¸్ à°ªంà°ªినవాà°°ిà°²ో 30 à°®ంà°¦ిà°¨ి à°¡్à°°ా à°¦్à°µాà°°ా à°Žంà°ªిà°• à°šేà°¸ి మహేà°·్ à°¬ాà°¬ుà°¤ో à°¸్à°Ÿంà°Ÿ్à°¸్ à°¯ాà°•్à°·à°¨్à°²ో à°ªాà°²్à°—ొà°¨ే అవకాà°¶ాà°¨్à°¨ి à°•à°²్à°ªిà°¸్à°¤ాà°°ు. à°ˆ ఆఫర్ à°¨ు ఈనెà°² 10 à°¨ుంà°šి à°¸ెà°ª్à°Ÿెంబర్ 9 వతేà°¦ీ వరకు à°µిà°¨ిà°¯ోà°—ింà°šుà°•ోవచ్à°šు |
Monday, August 9, 2010
Sunday, August 8, 2010
Saturday, August 7, 2010
Laxman Ton Helps India's Victory & Level Series...
Friday, August 6, 2010
Thursday, August 5, 2010
57 Th Idea Film Fare Awards
Participate in 'Idea Filmfare Awards (South)' Facebook Contest. Tag yourself to this picture and answer the question ‘Why should you be the chosen one attending the Idea Filmfare Awards (South) in Chennai?’. The best answers will win passes to the event in Chennai
Please read the content rules below
Wednesday, August 4, 2010
BOLLYWOOD UPDATE - SUPERSTAR MAHESH BABU
BOLLYWOOD UPDATE - SUPERSTAR MAHESH BABU
guys der is an update from the program called " BUSINESS IN THE BOLLYWOOD" regarding the next gen SOUTH INDIAN ACTORS to BOLLYWOOD ;)
so as per the sources MAHESH is considered as no1 position for his way to BOLLYWOOD
and dey declared the estimation price tags for TOP 5 ACTORS from SOUTH to BOLLYWOODTOP 5::
1) SUPERSTAR PRINCE MAHESH BABU (5 Crores)
2)SURYA (3 Crores)
3)VIKRAM (2.5 Crores)
4)DAGGUBATI RANA (1.5 Crores)
5)TRISHA KRISHNAN (50 Lakhs)
Tuesday, August 3, 2010
Monday, August 2, 2010
Sunday, August 1, 2010
Dhookudu Updates...............
Super Star Mahesh Babu
is looking farword to enter the sets of Dhookudu as soon as he
completes "Khaleja" 2 pending songs and 1 day patch scenes shooting
after second half of August. Shooting is going to be held at Kolkota.
The first schedule is going to be canned in Kolkota. Thaman of "Kick"
fame had already given 3 extraordinary tunes for "Dhookudu". Srinu Vytla
has designed the schedules of movie shooting to get released with in
six months after starting the shooting part. If every thing goes
perfectly as per planned schedules we can expect Mahesh Babu by
Sankranti.Samantha of Ye Maya Chesave fame is going to shake legs with
Prince and undoubtedly this pair is going to rock.
Saturday, July 31, 2010
Happy Friendship 2 Every One.............
Friendship is the most beautiful gift of God. For any occasion like
Birthdays, weddings and anniversaries of your friends, you can select
among these great and heart touching friend quotes. True friendship is like sound health; the value of it is seldom known until it be lost. Each friend represents a world in us, a world possibly not born until
they arrive, and it is only by this meeting that a new world is born. My friends are my estate. A real friend is one who walks in when the rest of the world walks out. A friend is one who walks in when others walk out A friend is someone who is there for you when he’d rather be anywhere else. A friend is someone who knows the song in your heart, and can sing it back to you when you have forgotten the words. A friend is one who believes in you when you have ceased to believe in yourself.
Friday, July 30, 2010
Thursday, July 29, 2010
It’s Taman for Mahesh Next Film
Music director Taman is in demand. Although he has not
delivered any big musical hit except Kick, he is composing music to big
stars like NTR and Mahesh Babu. After composing music for NTR’s Brindavanam,
he has bagged Mahesh Babu’s next film to be directed by Srinu
Vytla. Earlier Devi Sri Prasad was considered but Devi demanded more
time for composing the music and re-recording and also huge remuneration
to which Srinu Vytla and Mahesh said no. Mahesh Babu wants this film to
release very quickly, so he is not in favor of any technicians who take
plenty of time to deliver goods. Although Devi and Srinu Vytla’s
combination is hit combo, Mahesh told Vytla not use anyone for this film
who demands more time for perfection.
So Taman, the Mr.Quick Fix guy, has brought in. Samantha is the heroine in this film. And the movie’s regular shoot starts very shortly. Dukudu is the title under consideration for this flick.
So Taman, the Mr.Quick Fix guy, has brought in. Samantha is the heroine in this film. And the movie’s regular shoot starts very shortly. Dukudu is the title under consideration for this flick.
Test Case For Pen.............................
1.check each unit of the pen that is it expected one(in the sense
what should b required is there).
A)-All parts of the pan Like Refill,Cap,Bottom & top Body all r
according to specifications.
Eg:- Refill is okay not blank,
Cap & body of Pen is okay not brokened from any where
like that.
2.Now Seeing at integration point of view.
A). That all the units r assembled properly as pen.
B). Mean refill is in the body of the pen
C). Bottom part in bottom
D). Which is exactly integrated With Middle part of body which
kept refill. Or If Ink pen then ink filled in that.
3.Now coming at point view of functionality.
Again It may have concept same in ball or
a).When writing with pen it is writing or not.
b). Is body of Pen giving it's functionality or not
Mean when pressing the upper tip of pen refill come out to
write if it's ball pen.
4.Now at performance point of view
a) r the results according to specifications.
1). Writing is better.
2). Ink not spread.
3). Flow is better while writing.
4). Refill takes it's full time to end(Serveving Fully).
b) Pen work til it's specified life as per specifications.
what should b required is there).
A)-All parts of the pan Like Refill,Cap,Bottom & top Body all r
according to specifications.
Eg:- Refill is okay not blank,
Cap & body of Pen is okay not brokened from any where
like that.
2.Now Seeing at integration point of view.
A). That all the units r assembled properly as pen.
B). Mean refill is in the body of the pen
C). Bottom part in bottom
D). Which is exactly integrated With Middle part of body which
kept refill. Or If Ink pen then ink filled in that.
3.Now coming at point view of functionality.
Again It may have concept same in ball or
a).When writing with pen it is writing or not.
b). Is body of Pen giving it's functionality or not
Mean when pressing the upper tip of pen refill come out to
write if it's ball pen.
4.Now at performance point of view
a) r the results according to specifications.
1). Writing is better.
2). Ink not spread.
3). Flow is better while writing.
4). Refill takes it's full time to end(Serveving Fully).
b) Pen work til it's specified life as per specifications.
Part4 QTP Testing Tutorial Training Frameworks VB Script
Part3 QTP Testing Tutorial Training Frameworks VB Script
Part2 QTP Testing Tutorial Training Frameworks VB Script
QTP Testing Tutorial Training Frameworks VB Script
Khaleja Themes On Our Browser.................
Here are 2 basic firefox themes for Khaleja, one with the title and one with the prince.
Click Here
And
Other Click Here
You need to open the link in Firefox to change the theme. Once you open the page in Firefox, you can change the theme by clicking "wear it".
Interesting Things ....................
Interesting fact
about AUGUST 2010
This august has 5 Sundays,5 Mondays & 5Tuesdays.
All
in 1 month.
It happens once in 800 years.
STLC – Stages Involved
Test Development
Process:
- Test Traceability Matrix and Test coverage
- Test Scenarios Identification & Test Case preparation
- Test data and Test scripts preparation
- Test case reviews and Approval Base lining under Configuration Management
- Test Plan, RTM Test cases
STLC – Stages Involved
— Process: To plan, how the testing process should flow
—Test Process Flow
—Test Scope, Test Environment
—Different Test phase and Test Methodologies
—Manual and Automation Testing
—Defect Mgmt, Configuration Mgmt, Risk Mgmt. Etc
—Evaluation & identification – Test, Defect tracking tools
—Documents Involved:
—Master Test Plan, Test Scenario, SCM
STLC – Stages Involved
Requirement Analysis:
- Process: Analyzing software for design and implementation methods and testable aspects are recorded Documents involved:
- Requirement Specification documents
- Functional Specification documents
- Design Specification documents (use cases, etc)
- Use case Documents
- Test Trace-ability Matrix for identifying Test Coverage
STLC – Stages Involved
—Contract Signing:
- —Process - The project is signed with client for testing the software
- —Documents involved:
- —SRS
- —Test Deliverables
- —Test Metrics etc.
Wednesday, July 28, 2010
Walkins For Exp ...................
Hi,
Please have a look at the below job information - kindly help your friends.. they may need it. Just forward.
.
For more details visit click here.
Google's New Feature - Get Walk-In Job Alert SMS on your mobile - Click here
.
Data Entry Operator Require at ACS Freshers/Experienced Walk-In
.
Kilmist Infotech looking for Freshers as Software Developer - Trainee
.
Intelenet looking for Customer Service Executive (Voice process)
.
C/C++, Unix Developers need at Integra Micro Software - BE / BTech / MCA
.
Job Openings(50) at HCL Walk-In on 29th July, 2010
.
Software Developers Walk - In : Ameya Infovision - Java
.
Zensar Technologies Walk-In : Software Developers - 25 Openings
.
TCS looking for Multiple skills(4 to 8 yrs.exp.)
.
Hiring HR at Accenture - Trainee - Any Graduate
.
Job Vacancy at Tech Mahindra - International Process
.
Software Developers(Java) Walk-In at Mobius services
.
iGate Walk-In : Java / Dot Net Professionals
.
Walk-In @ TCS : JAVA, J2EE Experts(3 to 7 yrs exp.)
.
Job Opportunity at iGate : Walk - In Java Professionals
.
Recruitment in Staff Selection Commission - Multiple Post
.
Freshers Walk-In : Aavanor Systems for Software Engineers
.
Multiple Skills : Walk-In at TCS on 31st July
.
For more details click here
Please have a look at the below job information - kindly help your friends.. they may need it. Just forward.
.
For more details visit click here.
Google's New Feature - Get Walk-In Job Alert SMS on your mobile - Click here
.
Data Entry Operator Require at ACS Freshers/Experienced Walk-In
.
Kilmist Infotech looking for Freshers as Software Developer - Trainee
.
Intelenet looking for Customer Service Executive (Voice process)
.
C/C++, Unix Developers need at Integra Micro Software - BE / BTech / MCA
.
Job Openings(50) at HCL Walk-In on 29th July, 2010
.
Software Developers Walk - In : Ameya Infovision - Java
.
Zensar Technologies Walk-In : Software Developers - 25 Openings
.
TCS looking for Multiple skills(4 to 8 yrs.exp.)
.
Hiring HR at Accenture - Trainee - Any Graduate
.
Job Vacancy at Tech Mahindra - International Process
.
Software Developers(Java) Walk-In at Mobius services
.
iGate Walk-In : Java / Dot Net Professionals
.
Walk-In @ TCS : JAVA, J2EE Experts(3 to 7 yrs exp.)
.
Job Opportunity at iGate : Walk - In Java Professionals
.
Recruitment in Staff Selection Commission - Multiple Post
.
Freshers Walk-In : Aavanor Systems for Software Engineers
.
Multiple Skills : Walk-In at TCS on 31st July
.
For more details click here
Risk Analysis continued…
- Premature Release Risk
- Ability to determine the risk associated with releasing unsatisfactory or untested Software Products
- Risk Methods
- Strategies and approaches for identifying risks or problems associated with implementing and operating information technology, products and process; assessing their likelihood, and initiating strategies to test those risks
Risk Analysis continued…
—Knowledge of the most common risks associated with Software development, and the platform you are working on
—Business Risks
—Most common risks associated with the business using the Software
—Testing Risks
—Knowledge of the most common risks associated with Software Testing for the platform you are working on, tools being used, and test methods being applied
Risk Analysis
- A risk is a potential for loss or damage to an Organization from materialized threats.
- Risk Analysis attempts to identify all the risks and then quantify the severity of the risks
- Risk Identification
- Software Risks
- Business Risks
- Testing Risks
- Premature Release Risk
- Risk Methods
Test Plan – Consists of…
—ETVX Criteria
—Entry means the entry point to that phase.
—For example, for unit testing, the coding must be complete and then only one can start unit testing
—Task is the activity that is performed
—Validation is the way in which the progress and correctness and compliance are verified for that phase
—Exit tells the completion criteria of that phase, after the validation is done.
—For example, the exit criterion for unit testing is all unit test cases must pass
Test Plan – Consists of…
- Unit Testing
- Tools Required tool to test at unit level Priority of Program units
- Module-wise priority
- Naming convention for test cases
- Status reporting mechanism
- Regression test approach
Defintion Of Test Plan?
The test strategy identifies multiple test levels, which are going to be performed for the project. Activities at each level must be planned well in advance and it has to be formally documented. Based on the individual plans, the individual test levels are carried out.
Test Plan--Why?
- Identify Risks and Assumptions up front to reduce surprises later.
- Communicate objectives to all team members.
- Foundation for Test Spec, Test Cases, and ultimately the Bugs we find.
- Failing to plan = planning to fail.
What Is Test Plan?
- Derived from Test Approach, Requirements, Project Plan, Functional Spec., and Design Spec
- Details out project-specific Test Approach
- Lists general (high level) Test Case areas
- Include testing Risk Assessment
- Include preliminary Test Schedule
- Lists Resource requirements
New Rupee Symbol........
Kumar’s symbol is an amalgam of the Devanagari ‘Ra’ and the Roman capital ‘R’ without the stem, very much in line with what Finance Minister Pranab Mukherjee had envisioned. “We intend to formalise a symbol for the Indian rupee which reflects and captures Indian ethos and culture,” Mukherjee said in his Budget speech this year.
As per this report the five-member panel has chosen IIT post-graduate D Udaya Kumar’s design from among five shortlisted symbols and recommended it for Cabinet.
Tuesday, July 27, 2010
Free Admissions In Kansas University
Kansas State University – India Office
India
Office incepted in the year 2008, was inaugurated by Mr. JACK W.
LINDQUIST President of Kansas Agricultural And Rural Leadership Inc.Under the Directorship of Mr. Raj Kapoor and strong guidance of Mr. Subhash Kapoor and through the hard work of our well qualified staff India-office has been able to create a strong network of nearly 70 associates all over India, Nepal and Sri Lanka. We represent more than 150 cities.
“It has become obivious from all the above factors we have been able to render
great impact on all aspects of education ".
Based on the responce from the student community of Hyderabad, Andhra Pradesh we have opened an office in Hyderabad
The office was inaugurated by Prof T. Tirupathi Rao (Vice Chancellor of Osmania University)
India office provides:
Kansas State University USA has an office in India(Delhi).The office has associates all over India, Sri Lanka and Nepal.
It provides:
Free Admission Counseling for students from India, Sri Lanka & Nepal.
Instant Information
Guidance
Free submission of forms and documents through India Office.
Chetan Bhagat Profile Visting Views IN............
Monday, July 26, 2010
Mahesh Busy Schedule Going On...................
Kajal Would be the heroin in the upcoming movie of Super Star Mahesh under the direction of Lingu Swamy and R B Chowdary of Super Good Films being the producer. This Movie would go on to the sets from Jan after the completion of 14 Reels Entertainment Srinu Vytla's movie.This movie would also be made in Tamil whick Kajal and Vijay would pairup. It is known that Linguswamy has given blockbuster hits in the past like Pandemkodi,Run,Awara and our film would definitely have high expectations to shake Tollywood records
Sunday, July 25, 2010
Next Movie Schedule Starts on......
Mahesh Babu and Samantha combo movie in the direction of Srinu Vytla under the banner of 14 Reels Entertainment is titled as "Dhookudu"
The film will go to floors by
August 3rd week hopefully. Kona Venkat is penning the dialogues and
Gopi Mohan is the story writer. Music director is not yet confirmed.
Wednesday, July 21, 2010
Regular Expression for YAHOO...
regular expression for my mail i.d ajith_buddha@yahoo.com
[a-z]*[_0-9]*[a-z]*[@][a-z]*[.][a-z]*
in this from left to right
[a-z]*______ specifies ajith;
[_0-9]*_____ specifies underscore or numeric;
[a-z]*_______specifies buddha;
[@]_________specifies @;
[a-z]*_______specifies yahoo;
[.]__________specifies .(i.e dot);
[a-z]*_______specifies com
[a-z]*[_0-9]*[a-z]*[@][a-z]*[.][a-z]*
in this from left to right
[a-z]*______ specifies ajith;
[_0-9]*_____ specifies underscore or numeric;
[a-z]*_______specifies buddha;
[@]_________specifies @;
[a-z]*_______specifies yahoo;
[.]__________specifies .(i.e dot);
[a-z]*_______specifies com
Is it possible to have a defect with high severity..
Priority and Severity are two different entities but when it comes in correlating for setting the status of a bug they both come together into picture. For instance let us take a scenario that you are testing a web page with login form with username and password field. You observe that when you type password its like ordinary text field displaying characters not in * format. Won't you rise that defect as High Priority and High Severity . Yes i do agree that you also can have scenarios like making a High Severity and Low priority bug but not all the time since both the entities are related mostly. Do keep this in mind when you are posting any defect.
Tuesday, July 20, 2010
Software Testing Means..............
Software testing also provides an objective, independent view of the software to allow the business to appreciate and understand the risks at implementation of the software. Test techniques include, but are not limited to, the process of executing a program or application with the intent of finding Software Bugs.
Software testing can also be stated as the process of validating and verifying that a software program/application/product:
Different software development models will focus the test effort at different points in the development process. Newer development models, such as Agile, often employ test driven development and place an increased portion of the testing in the hands of the developer, before it reaches a formal team of testers. In a more traditional model, most of the test execution occurs after the requirements have been defined and the coding process has been completed.
Software testing can also be stated as the process of validating and verifying that a software program/application/product:
- meets the business and technical requirements that guided its design and development;
- works as expected; and
- can be implemented with the same characteristics.
Different software development models will focus the test effort at different points in the development process. Newer development models, such as Agile, often employ test driven development and place an increased portion of the testing in the hands of the developer, before it reaches a formal team of testers. In a more traditional model, most of the test execution occurs after the requirements have been defined and the coding process has been completed.
Test Case For Notepad...........
1) Check whether file is saved after entering data
Open Note pad application.
File menu -> new
Enter Some Text ("hello welcome to india")
File menu -> Save
select the path and give the file name (welcome.txt)
Click on Save button
Expected Results : file should be saved in the specified location
2) Check the functionality of Save as
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
File menu -> Save as
select the path and give the file name (welcome1.txt)
Click on Save button
Expected Results : file should be saved in the specified location
3) Check whether validation msg has been generated on giving same name for saving
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
File menu -> Save as
select the path and give the file name (welcome.txt)
Click on Save button
Expected Results : Application should generate a validation message stating, "Are you sure you want to relpace the file" with Yes/no Options
4) Check whether edits are saved
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
Edit the file by adding some text (have a nice day)
File menu -> Save
Expected Results : updated File should be saved
5) Check the functionality of Close button or exit Menu after editing file
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
Edit the file by adding some text (have a nice day)
File menu -> Exit or Click X button or top right corner of the notepad window
Expected Results : Application should generate a validation message stating, "Do you want to save changes to %path%" with Save, dont save, cancel buttons
6) Check the functionality of Close button or exit Menu with out editing file
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
File menu -> Exit or Click X button or top right corner of the notepad window
Expected Results : Application should close
7) Save the notepad File in hard drive(c or d drove)
where there is no space
Open Note pad application.
File menu -> new
Enter Some Text ("hello welcome to india")
File menu -> Save
select the path and give the file name (wcom.txt)
Click on Save button
Expected Results : File Should Not be saved in the specified path and should generate validation message
Open Note pad application.
File menu -> new
Enter Some Text ("hello welcome to india")
File menu -> Save
select the path and give the file name (welcome.txt)
Click on Save button
Expected Results : file should be saved in the specified location
2) Check the functionality of Save as
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
File menu -> Save as
select the path and give the file name (welcome1.txt)
Click on Save button
Expected Results : file should be saved in the specified location
3) Check whether validation msg has been generated on giving same name for saving
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
File menu -> Save as
select the path and give the file name (welcome.txt)
Click on Save button
Expected Results : Application should generate a validation message stating, "Are you sure you want to relpace the file" with Yes/no Options
4) Check whether edits are saved
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
Edit the file by adding some text (have a nice day)
File menu -> Save
Expected Results : updated File should be saved
5) Check the functionality of Close button or exit Menu after editing file
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
Edit the file by adding some text (have a nice day)
File menu -> Exit or Click X button or top right corner of the notepad window
Expected Results : Application should generate a validation message stating, "Do you want to save changes to %path%" with Save, dont save, cancel buttons
6) Check the functionality of Close button or exit Menu with out editing file
Open Note pad application.
File menu -> Open
Give the Path and select the file (welcome.txt)
File menu -> Exit or Click X button or top right corner of the notepad window
Expected Results : Application should close
7) Save the notepad File in hard drive(c or d drove)
where there is no space
Open Note pad application.
File menu -> new
Enter Some Text ("hello welcome to india")
File menu -> Save
select the path and give the file name (wcom.txt)
Click on Save button
Expected Results : File Should Not be saved in the specified path and should generate validation message
Monday, July 19, 2010
Exclusive For Mahesh Fans Cheering Photos.................
How To Prepare Test Case For Captcha?
Test Cases for CAPTCHA:
--------------------------------
1. Ensure that the CAPTCHA code screen should be viewable.
2. Ensure that the CAPTCHA code should be in Image format.
3. Ensure that the CAPTCHA code should be reusable.(able to get new code by clicked link)
4. Ensure that the CAPTCHA code should generate new code once the page is refreshed.
5. Ensure that the CAPTCHA code should generate new code once entered the wrong code.
6. Ensure that the CAPTCHA code should not able to copy/paste.
7. Ensure that the CAPTCHA code should be Case Sensitive or vice versa(According to the Requirement).
8. Ensure that the CAPTCHA code should not distruot the other fields in the form once entered wrong.(Other form fields should not clear)
9. Application should not accept the Invalid CAPTCHA code on form feed and should display proper alert message.
10. Application should accept the Valid CAPTCHA code on form feed.
--------------------------------
1. Ensure that the CAPTCHA code screen should be viewable.
2. Ensure that the CAPTCHA code should be in Image format.
3. Ensure that the CAPTCHA code should be reusable.(able to get new code by clicked link)
4. Ensure that the CAPTCHA code should generate new code once the page is refreshed.
5. Ensure that the CAPTCHA code should generate new code once entered the wrong code.
6. Ensure that the CAPTCHA code should not able to copy/paste.
7. Ensure that the CAPTCHA code should be Case Sensitive or vice versa(According to the Requirement).
8. Ensure that the CAPTCHA code should not distruot the other fields in the form once entered wrong.(Other form fields should not clear)
9. Application should not accept the Invalid CAPTCHA code on form feed and should display proper alert message.
10. Application should accept the Valid CAPTCHA code on form feed.
Sunday, July 18, 2010
Updated News About Super Star Mahesh Babu
Super Star Mahesh Babu is going to do another ad and this time it is a dream ad for Mahesh babu fans.Its None other than Provogue costumes.
Mahesh Babu is a brand ambassador for Provogue ad and the showroom will be opend by Mahesh Babu at Vijayawada in a grand way. Audio of Khaleja will be launched on 15th Aug at Guntur Brahmananda Reddy Stadium and Mahesh will open the Provogue showroom in Vijayawada on 14th of August. In Andhra Pradesh Amrutanjan,Provogue and Thums up are coming in a grand manner to promote their products with Mahesh Babu from next month . Where ever you see you can check for Mahesh Babu hordings on roads and ads in Cinema halls. Even Navaratna and Univercell also planning to release new hordings in August These are all of Khaleja effects.
Amrutanjan Ad is going to hit every theater in Andhra in August and its going to be made in a very new style.
Mahesh Babu will be more stylish in Provogue ad and its going to shake Telugu Industry with highest number of ads for a telugu Hero.. Thats only possible for our Super Star Mahesh Babu. Cheers to the fans
Mahesh Babu is a brand ambassador for Provogue ad and the showroom will be opend by Mahesh Babu at Vijayawada in a grand way. Audio of Khaleja will be launched on 15th Aug at Guntur Brahmananda Reddy Stadium and Mahesh will open the Provogue showroom in Vijayawada on 14th of August. In Andhra Pradesh Amrutanjan,Provogue and Thums up are coming in a grand manner to promote their products with Mahesh Babu from next month . Where ever you see you can check for Mahesh Babu hordings on roads and ads in Cinema halls. Even Navaratna and Univercell also planning to release new hordings in August These are all of Khaleja effects.
Amrutanjan Ad is going to hit every theater in Andhra in August and its going to be made in a very new style.
Mahesh Babu will be more stylish in Provogue ad and its going to shake Telugu Industry with highest number of ads for a telugu Hero.. Thats only possible for our Super Star Mahesh Babu. Cheers to the fans
Thursday, July 15, 2010
Wednesday, July 14, 2010
http://twitpic.com/257p1s
Mahesh New Movie's Trailer...........................
Subscribe to:
Posts (Atom)