Year: 2013
-
Completed one Year at Telerik
I am happy to share with each one of you that I have completed 1 year working for esteem organization Telerik I joined Telerik on 2nd July 2012 as their second employee in India. Journey from Developer to Evangelist has been exciting so far. As part of my job responsibility I focused on Mobile…
-
What is difference between First and FirstOrDefault in LINQ?
Last week I were presenting LINQ to group of almost 100 audience. While writing query a question raised that what is difference between First and FirstOrDefault . At that time I was not very sure about answer so I asked audience to help me. One from audience answered this question. So credit of this blog…
-
TestFixtureSetUp and TestFixtureTearDown in Unit Testing using NUnit: Part 4
We have been learning Unit Testing using NUnit together. Read first three parts of this series below, How to do Unit Test using NUnit : Part 1 Test SetUp and TearDown in Unit Testing using NUnit : Part 2 Ignore Test in Unit Testing using NUnit: Part 3 In Part 2 , we discussed about…
-
Ignore Test in Unit Testing using NUnit: Part 3
We have been learning Unit Testing using NUnit together. Read first two part of this series below, How to do Unit Test using NUnit : Part 1 Test SetUp and TearDown in Unit Testing using NUnit : Part 2 You may come across a scenario when test is itself broken. While executing test you need…
-
Test SetUp and TearDown in Unit Testing using NUnit : Part 2
Read Part 1 here: How to do Unit Test using NUnit : Part 1 In last post we talked about how to start with Unit Testing using NUnit. In this post I will discuss about following two topics, Test Setup Test Teardown You need Test Setup and Test Teardown to remove any dependency between tests.…
-
Presented in Silicon India SofTec 2013 on “A Look into Automated Web UI Test”
On 8th June 2013 I presented in Silcon India Softec conference. This conference was targetted to Test Professionals and witnessed around 400+ professionals. I presented on topic A look into Automated Web UI Test. I followed demo based presentation approach and engaged audience on how to automate web UI testing with Telerik Test Studio with…
-
Live Blog from Steve Forte Agile talk at Good Lab Hong Kong
I got an opportunity to attend Steve Forte talk on Agile talk at Good Lab Hong Kong. Below I am posting some of the points from this talk, Four Phases of Customer Development are as follows, Book must read if you are interested in Agile and Start-up. What is Agile? Agile development supports the rapid…
-
GIDS Presentation 2013: Revisiting
In GIDS 2013 I presented on topic Cross Platform Mobile Application with Data in the Cloud. It was great experience presenting in front of esteem audience. In my session I talked about working with data in cloud and hybrid application. I demoed on fetching SQL Azure data from KendoUI mobile based Hybrid Application. Presentation consist…
-
Can we implement Inheritance in WCF ServiceContract : WCF Interview Series #2
Can we implement Inheritance in WCF ServiceContract? YES we can have Contract Inheritance in WCF. In other words in WCF one ServiceContract can inherit other ServiceContract. Let us take an example that you have a ServiceContract named IParentService as given below, Another ServiceContract named IChildService can inherit IParentService as following, Next you need to decide…
-
Method Overloading in WCF: WCF Interview Series #1
How to do Method Overloading in WCF? Method or Operation overloading is one of the most important feature of OOPS. In programming languages like C, C++ and C#, this feature is heavily used by developers. While writing Service definition you may come across when you need to overload operations. Let us go ahead and write…