Skip to main content

Posts

Showing posts from 2013

Start from here : BDD - Behavior Driven Development

If you are quiet new to BDD : Behavior Driven Development , start with this video by Matt Wynne. Shows you the following things quickly and visually. BDD Syntax (or  Keywords) like Given / When / And / Then / Scenario / Feature - These are also know as Gherkin language or Ubiquitous language  The Software tools that are used for BDD Cucumber and Capybara  And you see how a BDD Test flow:  Specification (Story) -> Steps -> Passing parameters to steps -> Running the test -> Execution: Watch the tool runs a Browser and populated the fields (Parameter) -> Final results. You get to know how effective it is to test a Web Application with BDD tools. And now you know what BDD is : Define a behavior as STORY that could be understood by all stack holders in the project. Define the Test with UBIQUITOUS LANGUAGE Syntax Easy to User Acceptance Team to communicate with Technology Team and other way around.   Getting started with Cucumber a...

JDBC Connection to MS SQL Server Issues ( Port, connection failed, Port 1433, 1434, etc)

Resources: http://blogs.msdn.com/b/jdbcteam/ Download Microsoft JDBC Driver 4.0 for SQL Server  http://msdn.microsoft.com/en-us/sqlserver/aa937724.aspx     * You will find 2 .jar files in the download! Difference between sqljdbc.jar and sqljdbc4.jar . (Find more at http://msdn.microsoft.com/en-us/library/ms378422.aspx ) JAR Description sqljdbc.jar sqljdbc.jar   support for JDBC 3.0., Java Runtime Environment (JRE) of version 5.0.  sqljdbc4.jar   support for JDBC 4.0 API. , Java Runtime Environment (JRE) of version 6.0 or 7.0. Using sqljdbc4.jar on JRE 5.0 will throw an exception.  Connection URL:  (REF: http://msdn.microsoft.com/en-us/library/ms378428.aspx ) jdbc:sqlserver://localhost:1433;databaseName=AdventureWorks;integratedSecuri...