Recently I was working on Proof Of Concept with Jquery Mobile in one of our IPad application. It may sound like it will be same as Jquery. But to my surprise it was not. Since I am primarily a Web Developer, Mobile Development was something completely new to me. I would suggest you that we… Continue reading JQuery Mobile != Jquery
Author: Vikram Shetty
Hello PhoneGap
Introduction to PhoneGap was through my mobility team. It was an accident. I was just sitting with my team member Dipendra Khatri on his Apple Mac Pro. He was playing with a development framework called as PhoneGap. When I was going through some of its document it talked about the languages that I am pretty much… Continue reading Hello PhoneGap
Roy Osherove’s appreciation
I has watched an conference video on Team Leadership by Roy Osherove author of The Art of Unit testing. After which I create a one pager image and posted it on twitter referencing him. The image can be viewed here. It got some really nice points on leadership. On 2nd June I got an appreciation… Continue reading Roy Osherove’s appreciation
Simple way to dynamically load text to marquee
There might be many other way to load text dynamically to marquee, like javascript, Ajax or Jquery library. But I will show a very easy way using HTML and Asp.Net The aspx page will look like The code behind page will look like Happy Coding!
JSTest.NET from Nuget integration with MS Test Series Part 6
This is the concluding post part 6 of 6 posts. you can find the previous post here. Guideline and thought process of using the complete structure: Always keep the JavaScript tests in .js files under Test projects Refer production files from Main project. Reason to write tests for each function separately because it will help in troubleshooting to correct… Continue reading JSTest.NET from Nuget integration with MS Test Series Part 6
JSTest.NET from Nuget integration with MS Test Series Part 5
This is part 5 of 6 posts, you can find the previous post here. Integrating MS Test to execute the JavaScript test: Code is explained below: File names of JavaScript test file must be written as private class variable. Setup must load all production file. RunTest Method will be used to execute the Tests. Read post… Continue reading JSTest.NET from Nuget integration with MS Test Series Part 5
JSTest.NET from Nuget integration with MS Test Series Part 4
This is part 4 of 6 posts, you can find the previous post here. Creating JavascriptTestBase C# class as a helper class: The above class is self explanatory. Other points will be explained in following post, read Part 5 here.
JSTest.NET from Nuget integration with MS Test Series Part 3
This is part 3 of 6 posts, you can find the previous post here. Sample JavaScript test in .js file: The Add function mentioned in the previous post can have a test code as mentioned below: The keyword here is assertEqual to match the expected output to actual output. Other points will be explained in following… Continue reading JSTest.NET from Nuget integration with MS Test Series Part 3
JSTest.NET from Nuget integration with MS Test Series Part 2
This is part 2 of 6 posts, you can find the previous post here. Structural Overview of different component & its role: Below mentioned are different component of Tests: Actual JavaScript file which contains the production code. JavaScript Test file which contains the test methods. JavaScriptTestBase.cs is a helper class for writing better MS Test. Actual… Continue reading JSTest.NET from Nuget integration with MS Test Series Part 2
JSTest.NET from Nuget integration with MS Test Series Part 1
JSTest.Net is an framework for xUnit testing of java script without browser. You can find the basic information here. Since I cannot complete the detail information, this is a 6 part series of post Part 1: Intro & Installation of JSTest.Net using NuGet in Visual Studio. Part 2: Structural Overview of different component & its role. Part 3:… Continue reading JSTest.NET from Nuget integration with MS Test Series Part 1