You are on page 1of 6

Safe Universities

Southern Arkansas University

Apply Here

Required scores:: GRE: 284 TOEFL: 79 IELTS: 6 Dead Lines: Spring: 15 Nov 2016 Fa
ll: 15 Jul 2016
South Dakota State University

Apply Here

Required scores:: GRE: 292 TOEFL: 79 IELTS: 6 Dead Lines: Spring: 15 Aug 2016 Fa
ll: 15 Apr 2016
University of Tennessee at Chattanooga

Apply Here

Required scores:: GRE: 296 GMAT: 450 TOEFL: 79 IELTS: 6 Dead Lines: Spring: 01 N
ov 2016 Fall: 01 Jul 2016
Oklahoma City University

Apply Here

Required scores:: GRE: 297 TOEFL: 80 IELTS: 6 Dead Lines: Spring: 15 Oct 2016 Fa
ll: 15 Jun 2016
Texas A&M University, Kingsville

Apply Here

Required scores:: GRE: 297 TOEFL: 79 IELTS: 6 Dead Lines: Spring: 01 Oct 2016 Fa
ll: 01 Jun 2016
Lamar University

Apply Here

<?xml version="1.0" encoding="iso-8859-1"?>


<!DOCTYPE project [
]>
<project name="Selenium" default="usage" basedir=".">
<!-- ========== Initialize Properties =================================== -->
<property environment="env"/>
<property name="ws.home" value="${basedir}"/>
<property name="ws.jars" value="C:\jars"/>
<property name="test.dest" value="${ws.home}/build"/>
<property name="test.src" value="${ws.home}/src"/>
<property name="ng.result" value="test-output"/>
<!--target name="start-selenium-server">
<java jar="${ws.home}/lib/selenium-server.jar"/>
</target-->
<target name="setClassPath" unless="test.classpath">
<path id="classpath_jars">
<fileset dir="${ws.jars}" includes="*.jar"/>
</path>
<pathconvert pathsep=":"
property="test.classpath"
refid="classpath_jars"/>
</target>
<target name="init" depends="setClassPath">
<tstamp>
<format property="start.time" pattern="MM/dd/yyyy hh:mm aa" />
</tstamp>
<condition property="ANT"
value="${env.ANT_HOME}/bin/ant.bat"
else="${env.ANT_HOME}/bin/ant">
<os family="windows" />
</condition>
<taskdef name="testng" classpath="${test.classpath}"
classname="org.testng.TestNGAntTask" />
</target>
<!-- all -->
<target name="all">
</target>
<!-- clean -->
<target name="clean">
<delete dir="${test.dest}"/>
</target>
<!-- compile -->
<target name="compile" depends="init, clean" >
<delete includeemptydirs="true" quiet="true">
<fileset dir="${test.dest}" includes="**/*"/>
</delete>
<echo message="making directory..."/>
<mkdir dir="${test.dest}"/>
<echo message="classpath------: ${test.classpath}"/>
<echo message="compiling..."/>
<javac
debug="true"
destdir="${test.dest}"
srcdir="${test.src}"
target="1.5"
classpath="${test.classpath}"

>
</javac>
</target>
<!-- build -->
<target name="build" depends="init">
</target>
<!-- run -->
<target name="run" depends="compile">
<testng classpath="${test.classpath}:${test.dest}" suitename="suite1">
<xmlfileset dir="${ws.home}" includes="testng.xml"/>
</testng>
</target>
<target name="usage">
<echo>
ant run will execute the test
</echo>
</target>
<path id="test.c">
<fileset dir="${ws.jars}" includes="*.jar"/>
</path>
<target name="makexsltreports">
<mkdir dir="${ws.home}/XSLT_Reports/output"/>
<xslt in="${ng.result}/testng-results.xml" style="src/xslt/testng-results.xsl"
out="${ws.home}/XSLT_Reports/output/index.html" classpathref="test.c" processor=
"SaxonLiaison">
<param name="testNgXslt.outputDir" expression="${ws.home}/XSLT_Reports/output/"/
>
<param name="testNgXslt.showRuntimeTotals" expression="true"/>
</xslt>
</target>
<!-- ****************** targets not used ****************** -->
</project>

TestCases Specifications in Behaviour Driven Development :


Step 1:
Testcases should be defined in a Business level by following a ubiquitous langua
ge
Ubiquitous language is a (semi-)formal language that is shared by all members of
a software development team
both software developers and non-technical personne
l.[15]
Syntax :
In order to(Achieve something)-> Business outcome
As a (Role)

I want to Do this
Example:
In order to Pay Credit Card Payment
As a NetBanking sole owner who have credit section access
I want to Navigate to credit card section, Enter amount and process my Payment
Step 2:
Its time to Decide what Test cases are sufficient to certify Business Scenario w
orking
Syntax for Writing Testcases:
Given (what you need to have to perform action), -Prerequists
When (performs action)- Action
Then (the desired outcome for the user).- Validation
Example:
Given : An account with zero balance
When: I navigate to Credit card Payment Section and click on submit bu giving am
ount
Then : It should throw error message fund
Given : An account with sufficent balance who does not have credit card
When: I navigate to Credit card Payment Section
Then :You don't have to access as your are error message
Given : An account with sufficent balance who does not have credit card
When: I navigate to Credit card Payment Section and amount
Then :You don't have to access /error message
Advantages:
This can be used as Standard Template where all QA can stick to one common stand
ards of defining Testcases
Each Scenario reflects a Business Value
We can estimate the Test coverage happened for Each Business outcome by going th
rough Test Cases
We can tag these Annotations to Selenium Automation and execute the Business Tes
tcases
Common Standardised Testcase template for both Manual and Automation testing

TestCases Specifications in Behaviour Driven Development :


Step 1:
Testcases should be defined in a Business level by following a ubiquitous langua

ge
Ubiquitous language is a (semi-)formal language that is shared by all members of
a software development team
both software developers and non-technical personne
l.[15]
Syntax :
In order to(Achieve something)-> Business outcome
As a (Role)
I want to Do this
Example:
In order to Pay Credit Card Payment
As a NetBanking sole owner who have credit section access
I want to Navigate to credit card section, Enter amount and process my Payment
Step 2:
Its time to Decide what Test cases are sufficient to certify Business Scenario w
orking
Syntax for Writing Testcases:
Given (what you need to have to perform action), -Prerequists
When (performs action)- Action
Then (the desired outcome for the user).- Validation
Example:
Given : An account with zero balance
When: I navigate to Credit card Payment Section and click on submit bu giving am
ount
Then : It should throw error message fund
Given : An account with sufficent balance who does not have credit card
When: I navigate to Credit card Payment Section
Then :You don't have to access as your are error message
Given : An account with sufficent balance who does not have credit card
When: I navigate to Credit card Payment Section and amount
Then :You don't have to access /error message
Advantages:
This can be used as Standard Template where all QA can stick to one common stand
ards of defining Testcases
Each Scenario reflects a Business Value
We can estimate the Test coverage happened for Each Business outcome by going th
rough Test Cases
We can tag these Annotations to Selenium Automation and execute the Business Tes
tcases
Common Standardised Testcase template for both Manual and Automation testing

Required scores:: GRE: 297 TOEFL: 79 IELTS: 6.5 Dead Lines: Spring: 01 Dec 2016
Fall: 01 Jul 2016
Sacred Heart University

Apply Here

Moderate Universities
Texas A&M University, Commerce

Apply Here

Required scores:: GRE: 285 TOEFL: 79 IELTS: 6.5 Dead Lines: Spring: 15 Oct 2016
Fall: 01 Jun 2016
University of Central Missouri

Apply Here

Required scores:: GRE: 291 GMAT: 500 TOEFL: 79 IELTS: 6 Dead Lines: Spring: 01 O
ct 2016 Fall: 01 Apr 2016
Bradley University

Apply Here

Required scores:: GRE: 297 TOEFL: 79 IELTS: 6.5 Dead Lines: Spring: 15 Oct 2016
Fall: 15 May 2016
University of Bridgeport

Apply Here

Required scores:: GRE: 300 TOEFL: 80 IELTS: 6.5 Dead Lines: Spring: 01 Dec 2016
Fall: 15 Jul 2016
Ambitious Universities
Northwest Missouri State University

Apply Here

Required scores:: GRE: 294 TOEFL: 79 IELTS: 6.5 Dead Lines: Spring: 15 Nov 2016
Fall: 01 Jul 2016
Kent State University

Apply Here

Required scores:: GRE: 297 TOEFL: 71 IELTS: 6 Dead Lines: Spring: 01 Nov 2016 Fa
ll: 01 Jun 2016
Cleveland State University

Apply Here

California State University, Los Angeles

Apply Here

Required scores:: GRE: 297 TOEFL: 80 IELTS: 6.5 Dead Lines: Fall: 01 Apr 2016

You might also like