<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Iphone software/application tester&#039;s</title>
	<atom:link href="http://iphonetesters.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iphonetesters.wordpress.com</link>
	<description>Iphone application testing discussion blog-Organized by 360logica software testing services</description>
	<lastBuildDate>Thu, 16 Jun 2011 19:52:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iphonetesters.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/f2fe247670753def97ecd5bd0bb1966d?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Iphone software/application tester&#039;s</title>
		<link>http://iphonetesters.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iphonetesters.wordpress.com/osd.xml" title="Iphone software/application tester&#039;s" />
	<atom:link rel='hub' href='http://iphonetesters.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Iphone Unit testing</title>
		<link>http://iphonetesters.wordpress.com/2011/06/16/iphone-unit-testing/</link>
		<comments>http://iphonetesters.wordpress.com/2011/06/16/iphone-unit-testing/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 19:50:16 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ipad applications]]></category>
		<category><![CDATA[Iphone applications]]></category>
		<category><![CDATA[Mobile testing]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=56</guid>
		<description><![CDATA[http://code.google.com/p/google-toolbox-for-mac/wiki/iPhoneUnitTesting Introduction This is a quick tutorial on doing iPhone unit testing using the facilities in the Google Toolbox For Mac. Please send mail to the group if any clarification is required. Basic Project Setup Hopefully your project already has an application target for building something for the iPhone. Create a new iPhone Target of type &#8220;Cocoa [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=56&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://code.google.com/p/google-toolbox-for-mac/wiki/iPhoneUnitTesting</p>
<h1>Introduction</h1>
<p>This is a quick tutorial on doing iPhone unit testing using the facilities in the Google Toolbox For Mac. Please send mail to <a href="http://groups.google.com/group/google-toolbox-for-mac" rel="nofollow">the group</a> if any clarification is required.</p>
<h1><a name="Basic_Project_Setup"></a>Basic Project Setup</h1>
<p>Hopefully your project already has an application target for building something for the iPhone.</p>
<ol>
<li>Create a new iPhone Target of type &#8220;Cocoa Touch Application&#8221; via &#8220;Project Menu &gt; New Target&#8230;&#8221;. Choose a name that makes some sense such as &#8220;Unit Test&#8221;. Be sure to use a &#8220;Cocoa Touch Application&#8221; target as opposed to a &#8220;Cocoa Application&#8221; target or a &#8220;Cocoa Touch Static Library&#8221; target or &#8220;Cocoa Touch Unit Test Bundle&#8221;.</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestMain.m</tt> to your target</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestDelegate.m</tt> to your target</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestDelegate.h</tt> to your project</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMSenTestCase.m</tt> to your target</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMSenTestCase.h</tt> to your project</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMUnitTestDevLog.m</tt> to your target</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMUnitTestDevLog.h</tt> to your project</li>
<li>Add <tt>google-toolbox-for-mac/Foundation/GTMObjC2Runtime.m</tt> to your target</li>
<li>Add <tt>google-toolbox-for-mac/Foundation/GTMObjC2Runtime.h</tt> to your project</li>
<li>Add <tt>google-toolbox-for-mac/Foundation/GTMRegex.m</tt> to your target</li>
<li>Add <tt>google-toolbox-for-mac/Foundation/GTMRegex.h</tt> to your project</li>
<li>Add <tt>google-toolbox-for-mac/GTMDefines.h</tt> to your project</li>
<li>Add a new &#8216;run script&#8217; build phase as the last step of your target build via &#8220;Project Menu &gt; New Build Phase &gt; New Run Script Build Phase&#8221;, and dragging it to the end of the build steps if needed.</li>
<li>Edit your Run Script Build Phase by double clicking it, and set the shell to &#8220;/bin/sh&#8221; and the script to<tt>"PATH_TO_GTM/UnitTesting/RunIPhoneUnitTest.sh"</tt>, where PATH_TO_GTM is the path to your local version of google-toolbox-for-mac.</li>
<li>Xcode&#8217;s new application stationery generates an Info.plist that specifies a Main nib file base name. Open the new unit test&#8217;s .plist file and remove that line. If you don&#8217;t do this, RunIPhoneUnitTest.sh will crash when UIApplication throws an exception trying to load an inappropriate or non-existent nib file.</li>
<li>Build! Note that if you choose build and go you will see your unit tests executed twice, once as part of the build script, and once being run</li>
</ol>
<p>&nbsp;</p>
<p>Your target should now build cleanly, and if you check the build log you should see something like: &#8220;Executed 0 tests, with 0 failures (0 unexpected) in 0.001 (0.001) seconds&#8221; at the end.</p>
<h1><a name="Trouble_Shooting"></a>Trouble Shooting</h1>
<ul>
<li>Make sure you are not linked against the <tt>SenTestingKit.framework</tt>.</li>
</ul>
<h1><a name="Creating_a_unit_test"></a>Creating a unit test</h1>
<ol>
<li>Add the source you want to test to your target. For example if you want to test class Foo, make sure to add Foo.h and Foo.m to your target.</li>
<li>Add a new unit test file to your target via &#8220;File &gt; New File&#8221; and choose &#8220;Objective-C test case class&#8221; from the &#8220;Mac OS X&#8221; Cocoa category. Call it <tt>FooTest.m</tt>, or follow whatever convention your project has for naming test classes.</li>
<li>In <tt>FooTest.h</tt>, change <tt>#import &lt;SenTestingKit/SenTestingKit.h&gt;</tt> to <tt>#import "GTMSenTestCase.h"</tt></li>
<li>Also set up your class so that it inherits from GTMTestCase (<em>not</em> GTMSenTestCase) instead of <tt>SenTestCase</tt><br />
<tt>@interface MyTestCase : GTMTestCase { ... }</tt></li>
<li>Add test cases as you normally would. See <a href="http://developer.apple.com/tools/unittest.html" rel="nofollow">Apple&#8217;s Documentation</a> for a good tutorial on how to test in Objective C. The key is that your test case methods are declared <tt>- (void)testBar</tt>. The name must start with &#8220;test&#8221; and they must return nothing and have no arguments.</li>
</ol>
<p>Now when you build your target you should now see test cases executing. You can repeat this process creating additional source files for each class you want to write Unittests for.</p>
<h1><a name="Debugging"></a>Debugging</h1>
<p>You can debug your unit test executable the exact same way you would unit test any executable. You shouldn&#8217;t have to set up anything. Note that you may see cases where the unit test build fails, but it doesn&#8217;t fail when you are debugging. When the unit test build is running several flags are turned on to encourage failures such as <tt>MallocScribble</tt>, <tt>NSAutoreleaseFreedObjectCheckEnabled</tt> etc. You may want to look in<tt>RunIPhoneUnitTest.sh</tt> and see what is being enabled for you.</p>
<h1><a name="Notes"></a>Notes</h1>
<ul>
<li>We find that having a .h for tests to be mostly useless, and tend to just the interfaces for the tests in with the implementation so I only have one file to worry about.</li>
<li>Make sure to check out the extra ST macros that we have added in <tt>GTMSenTestCase.h</tt> that go above and beyond the set included with the default OCUnit.</li>
<ul>
<li>STAssertNoErr(a1, description, &#8230;), STAssertErr(a1, a2, description, &#8230;)</li>
<li>STAssertNotNULL(a1, description, &#8230;), STAssertNULL(a1, description, &#8230;)</li>
<li>STAssertNotEquals(a1, a2, description, &#8230;), STAssertNotEqualObjects(a1, a2, desc, &#8230;)</li>
<li>STAssertEqualObjects(a1, a2, description, &#8230;), STAssertEquals(a1, a2, description, &#8230;), STAssertEqualsWithAccuracy(a1, a2, accuracy, description, &#8230;)</li>
<li>STAssertOperation(a1, a2, op, description, &#8230;), STAssertGreaterThan(a1, a2, description, &#8230;), STAssertLessThan(a1, a2, description, &#8230;), STAssertLessThanOrEqual(a1, a2, description, &#8230;)</li>
<li>STAssertEqualStrings(a1, a2, description, &#8230;), STAssertNotEqualStrings(a1, a2, description, &#8230;), STAssertEqualCStrings(a1, a2, description, &#8230;), STAssertNotEqualCStrings(a1, a2, description, &#8230;)</li>
<li>STAssertTrueNoThrow(expr, description, &#8230;), STAssertFalseNoThrow(expr, description, &#8230;), STAssertThrows(expr, description, &#8230;), STAssertThrowsSpecific(expr, specificException, description, &#8230;), STAssertThrowsSpecificNamed(expr, specificException, aName, description, &#8230;), STAssertNoThrow(expr, description, &#8230;), STAssertNoThrowSpecific(expr, specificException, description, &#8230;), STAssertNoThrowSpecificNamed(expr, specificException, aName, description, &#8230;)</li>
</ul>
<li>You can&#8217;t run the build script while the iPhone simulator is running. The build script does attempt to kill it off before it runs, but if you see<tt>Couldn't register PurpleSystemEventPort with the bootstrap server. Error: unknown error code. This generally means that another instance of this process was already running or is hung in the debugger.</tt> or <tt>Abort trap "$TARGET_BUILD_DIR/$EXECUTABLE_PAT" -RegisterForSystemEvents</tt> you probably need to figure out why the simulator (or another iPhone process) is already running. The exact error has changed with different versions of the iPhone SDK.</li>
</ul>
<h1><a name="Advanced_Stuff"></a>Advanced Stuff</h1>
<h2><a name="Unit_test_Logging"></a>Unit test Logging</h2>
<p>When Unittesting is done correctly, you often have a lot of log messages logging because you are testing edge cases that you may not expect to hit in the real world very often. It&#8217;s nice to be able to verify that the log messages you are receiving as you run your tests are the ones that you expect to receive. You can do this in GTM by enabling unit test logging.</p>
<ol>
<li>Assuming you are using <tt>_GTMDevLog</tt> to do your logging,<tt>#define _GTMDevLog _GTMUnittestDevLog</tt> somewhere, either in target settings, or in your prefix. If you are using NSLog you can just define it to be <tt>_GTMUnittestDevLog</tt>.</li>
<li>Add <tt>google-toolbox-for-mac/DebugUtils/GTMDevLog.m</tt> to your target.</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMUnitTestDevLog.m</tt> to your target.</li>
<li>Add <tt>google-toolbox-for-mac/Foundation/GTMRegex.m</tt> to your target.</li>
<li>You may also need to add some headers depending on your search paths</li>
</ol>
<p>Now when you build all of the logging that you do via your unit tests will get checked to make sure that it conforms with your expectations. You set up these expectations before running your tests using <tt>[GTMUnitTestDevLog expect*]</tt> methods. See <tt>GTMUnitTestDevLog.h</tt> for more info.</p>
<h2><a name="UI_and_State_Testing"></a>UI and State Testing</h2>
<p>GTM can also help you test your UI&#8217;s representation and state.</p>
<ol>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMNSObject+UnitTesting.m</tt> to your target.</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMUIKit+UnitTesting.m</tt> to your target.</li>
<li>Add <tt>google-toolbox-for-mac/UnitTesting/GTMCALayer+UnitTesting.m</tt> to your target.</li>
<li>Add <tt>google-toolbox-for-mac/Foundation/GTMSystemVersion.m</tt> to your target.</li>
<li>Add the <tt>CoreGraphics</tt> and <tt>QuartzCore</tt> frameworks to your target.</li>
<li>You may also need to add some headers depending on your search paths</li>
</ol>
<p>Check out <tt>UnitTesting/GTMUIKit+UnitTestingTest.m</tt> for examples of using<tt> UIUnitTesting</tt> on the iPhone.</p>
<p>For more information on some of this, check out <a href="http://code.google.com/p/google-toolbox-for-mac/wiki/CodeVerificationAndUnitTesting">CodeVerificationAndUnitTesting</a>. Hope this helps.</p>
<h2><a name="Unit_Test_Environment_Variables"></a>Unit Test Environment Variables</h2>
<p>To encourage &#8220;bad behavior&#8221; by the code being tested, the <tt>RunIPhoneUnitTest.sh</tt> script sets a variety of environment variables. If you are wondering why the unit tests fail when you are building, but don&#8217;t fail when you are running, it may be because of a side effect of one of these variables. Take a look at all the <tt>export</tt> commands within <tt>RunIPhoneUnitTest.sh</tt> to see what&#8217;s actually going on.</p>
<h2><a name="Leaks"></a>Leaks</h2>
<p>By default the iPhone unit tests will run leaks after all the tests have completed. This can be turned off by setting the <tt>GTM_DISABLE_LEAKS</tt>environment variable before you execute the <tt>RunIPhoneUnitTest.sh</tt> script. Out of the box, NSZombies will also be enabled. This however interferes slightly with leaks and makes it difficult to get good backtraces and context. If you want the backtraces and context, set the<tt>GTM_DISABLE_ZOMBIES</tt> environment variable before you execute the <tt>RunIPhoneUnitTest.sh</tt> script. All leaks will appear as warnings on the build console.</p>
<h2><a name="Termination"></a>Termination</h2>
<p>Some of Apple&#8217;s tools (such as Instruments) don&#8217;t want the app to terminate underneath them. By default the iPhone unit test app will terminate when it has finished it&#8217;s run. Set the <tt>GTM_DISABLE_TERMINATION</tt> environment variable if you want to disable termination and just have the unit test &#8220;run&#8221; until you are done with it.</p>
<h2><a name="Keychain_Testing"></a>Keychain Testing</h2>
<p>If your code uses the keychain, you may need to set <tt>GTM_DISABLE_IPHONE_LAUNCH_DAEMONS=0</tt> before you run your unit tests. See RunIPhoneUnitTest.sh for details on this flag and why it should be set.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=56&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2011/06/16/iphone-unit-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
		<item>
		<title>Using VoiceOver to Test Your Application</title>
		<link>http://iphonetesters.wordpress.com/2011/04/06/using-voiceover-to-test-your-application/</link>
		<comments>http://iphonetesters.wordpress.com/2011/04/06/using-voiceover-to-test-your-application/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 19:11:43 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[360logica]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[IPAD]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[Mobile application]]></category>
		<category><![CDATA[product testing]]></category>
		<category><![CDATA[threesixtylogica]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=52</guid>
		<description><![CDATA[Using VoiceOver to Test Your Application It&#8217;s a good idea to test your application using VoiceOver, because it allows you to experience the application in the same way that VoiceOver users will experience it. Using VoiceOver to run your application can expose problem areas, for example, confusing labels, unhelpful hints, and unreachable elements, that make [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=52&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Using VoiceOver to Test Your Application</h2>
<p>It&#8217;s a good idea to test your application using VoiceOver, because it allows you to experience the application in the same way that VoiceOver users will experience it. Using VoiceOver to run your application can expose problem areas, for example, confusing labels, unhelpful hints, and unreachable elements, that make your application less accessible.</p>
<p>VoiceOver is a sophisticated application that provides many powerful features to users with disabilities. For example, VoiceOver users can use an invisible dial, known as the rotor control, to change the results of some gestures on the fly. Although you don’t need to become an expert VoiceOver user to test your application with it, you do need to know a handful of basic gestures. This section describes how to activate VoiceOver and use it to run your application. (To learn more about using VoiceOver, see<em>iPhone User Guide</em>, available at <a rel="external" href="http://support.apple.com/manuals/iphone" target="_blank">Apple &#8211; Support &#8211; Manuals</a>.)</p>
<p>First, go to Settings &gt; General &gt; Accessibility &gt; VoiceOver and tap the switch control to turn VoiceOver on. If you provide hints for any accessible elements in your application, check to make sure the Speak Hints switch is on (it is on by default). Before leaving VoiceOver settings, make sure the Speaking Rate slider is adjusted to an appropriate value.</p>
<p>After you’ve turned VoiceOver on, you’ll notice that many familiar gestures have different effects. For example, a single tap causes VoiceOver to speak the selected item and a double tap activates the selected item. There are also a couple of new gestures you should learn to make testing your application with VoiceOver easier. The gestures you’re most likely to need for testing are listed below:</p>
<ul>
<li><strong>Drag over the screen</strong>. Select and speak each item as you touch it.</li>
<li><strong>Tap</strong>. Speak the selected item.</li>
<li><strong>Two-finger tap</strong>. Stop speaking the current item.</li>
<li><strong>Flick right or left</strong>. Select the next or previous item.</li>
<li><strong>Double tap</strong>. Activate the selected item.</li>
<li><strong>Two-finger flick up</strong>. Read all accessible items from the top of the screen.</li>
<li><strong>Two-finger flick down</strong>. Read all accessible items from the current position.</li>
</ul>
<p>There are also a few tasks you might need to perform. For example:</p>
<ul>
<li><strong>Enter text on the keyboard</strong>. Flick left or right to select the desired key, then double-tap to enter the character. Alternatively, you can drag your finger over the keyboard until the desired key is selected. Then, while holding the selected key with one finger, tap the screen with another finger to enter the character.Flick up or down to move the insertion point forward or backward in the text.</li>
<li><strong>Scroll a list or area of the screen</strong>. Flick up or down with three fingers.</li>
<li><strong>Adjust a slider</strong>. Flick up or down (with a single finger) to increase or decrease the setting.</li>
<li><strong>Unlock iPhone</strong>. Select the Unlock switch, then double-tap the screen.</li>
</ul>
<p>When an element is selected, VoiceOver draws a black rectangle around it (similar to the shaded rectangle Accessibility Inspector draws), which is called the VoiceOver cursor. While you’re testing your application you can use the VoiceOver cursor as another way to make sure elements are being selected as you expect.</p>
<p>To simulate the experience a visually impaired user might have with your application, you can run it with the VoiceOver Screen Curtain in place. When you activate the Screen Curtain, VoiceOver turns the device display off. Testing with the display turned off obliges you to rely on the information VoiceOver speaks and removes the temptation to use your application as a sighted user would. To turn off the display while you use VoiceOver, triple-tap the screen with three fingers. To turn the display back on, perform the same gesture again.</p>
<div id="pageNavigationLinks_bottom">Source: <a href="http://developer.apple.com/">http://developer.apple.com</a></div>
<div></div>
<div>Submitted by: http://www.360logica.com</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=52&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2011/04/06/using-voiceover-to-test-your-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
		<item>
		<title>testflightapp-IOS beta testing on the fly</title>
		<link>http://iphonetesters.wordpress.com/2011/01/27/testflightapp-ios-beta-testing-on-the-fly/</link>
		<comments>http://iphonetesters.wordpress.com/2011/01/27/testflightapp-ios-beta-testing-on-the-fly/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 18:31:00 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Build distribution]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Iphone 4]]></category>
		<category><![CDATA[iphone application testing]]></category>
		<category><![CDATA[Iphone apps]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=47</guid>
		<description><![CDATA[Very good tool for Iphone apps easy distribution: There’s nothing quite like the feeling of embarking on something new. You have a solid idea, construction somewhat complete, and it’s time to turn the ignition to see if this thing is gonna fly… This is the spirit behind TestFlight. The excitement of making something new and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=47&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Very good tool for Iphone apps easy distribution:<br />
There’s nothing quite like the feeling of embarking on something new. You have a solid idea, construction somewhat complete, and it’s time to turn the ignition to see if this thing is gonna fly…<br />
This is the spirit behind TestFlight. The excitement of making something new and trying it out. Sharing it. Doing it again.Welcome to TestFlight open beta &#8211; the best way to test your mobile apps.<br />
This service is made by app developers and designers who thought there MUST be a better way to manage beta apps. It wasn’t easy, and we’re still working on it, but we wanted to get it in your hands as soon as we could. Before we begin, we want to share a few things:<br />
What TestFlight Does</p>
<p>&nbsp;</p>
<ul>
<li>Works within Apple’s guidelines and rules for ad hoc provisioning and device # limitations</li>
<li>Free over-the-air beta distribution. Apps are installed in one tap over-the-air and users will be notified of future builds.</li>
<li>Easily and elegantly send as many builds and updates to your beta devices Distribution Lists: Easily select who gets what when you distribute</li>
<li>Recruitment: Promote your beta app and select new users that sign up</li>
</ul>
<p>What TestFlight Doesn’t Do</p>
<ul>
<li>You don’t need to jailbreak or alter your phone; theydon’t alter the device.</li>
<li>It is not a replacement for Apple’s ad hoc provisioning profile and device # limitations.</li>
</ul>
<p>more about testappflight visit http://testappflight.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=47&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2011/01/27/testflightapp-ios-beta-testing-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
		<item>
		<title>What Are Your Options?</title>
		<link>http://iphonetesters.wordpress.com/2010/09/28/what-are-your-options/</link>
		<comments>http://iphonetesters.wordpress.com/2010/09/28/what-are-your-options/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 11:31:31 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ipad applications]]></category>
		<category><![CDATA[IPAD testing]]></category>
		<category><![CDATA[Iphone applications]]></category>
		<category><![CDATA[Iphone testing]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[Software testing]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=43</guid>
		<description><![CDATA[Before you decide how to present your product to iPhone OS users, you need to understand the range of options you have. Depending on the implementation details of your proposed product and its intended audience, some types of software may be better suited to your needs than others. This section divides software for iPhone OS–based [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=43&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">Before you decide how to present your product to iPhone OS users, you need to understand the range of </span><span style="font-family:MyriadSet-Medium;">options you have. Depending on the implementation details of your proposed product and its intended </span><span style="font-family:MyriadSet-Medium;">audience, some types of software may be better suited to your needs than others.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;"> </span><span style="font-family:MyriadSet-Medium;">This section divides software for iPhone OS–based devices into three broad categories, primarily based on implementation method. Roughly speaking, you can create:</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;"> </span></p>
<p class="MsoNormal"><span style="font-size:7pt;font-family:AdobePiStd;color:black;">■ </span><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">An </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;color:black;">iPhone application</span></strong><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">, which is an application you develop using the iPhone SDK to run natively on </span><span style="font-family:MyriadSet-Medium;">iPhone OS–based devices.</span></p>
<p class="MsoNormal"><span style="font-size:7pt;font-family:AdobePiStd;color:black;">■ </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;color:black;">Web-only content</span></strong><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">, including web applications, which are websites that behave like built-in iPhone </span><span style="font-family:MyriadSet-Medium;">applications.</span><span style="font-family:MyriadSet-Medium;"> </span></p>
<p class="MsoNormal"><span style="font-size:7pt;font-family:AdobePiStd;color:black;">■ </span><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">A </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;color:black;">hybrid application</span></strong><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">, which is an iPhone application that provides access to web content primarily </span><span style="font-family:MyriadSet-Medium;">through a web-content viewing area, but includes some iPhone OS user interface elements.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;"> </span></p>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:16pt;font-family:MyriadSet-Medium;color:black;">iPhone Applications</span></span></p>
<p class="MsoNormal"><span style="font-size:16pt;font-family:MyriadSet-Medium;color:black;"> </span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;color:black;">iPhone applications </span></strong><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">resemble the built-in applications on iPhone OS–based devices in that they reside on the device itself and take advantage of features of the iPhone OS environment. Users install iPhone applications on their devices and use them just as they use built-in applications, such as Stocks, Maps, Calculator, and Mail.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;"> </span><span style="font-family:MyriadSet-Medium;">An iPhone application is quick to launch and easy to use. Whether the application enables a task like sending email or provides entertainment to users, it is characterized by responsiveness, simplicity, and a beautiful, streamlined user interface.</span></p>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:16pt;font-family:MyriadSet-Medium;color:black;">Web-only Content</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">You have a few different options when it comes to providing </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;color:black;">web-only content </span></strong><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">to iPhone OS users:</span></p>
<p class="MsoNormal"><span style="font-size:7pt;font-family:AdobePiStd;color:black;">■ </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;color:black;">Web applications</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;">as web applications, because they behave similarly to the built-in iPhone OS applications. A web </span><span style="font-family:MyriadSet-Medium;">application, like all web-only content, runs in Safari on iPhone; users do not install it on their devices, </span><span style="font-family:MyriadSet-Medium;">instead they go to the web application’s URL.</span></p>
<p class="MsoNormal"><span style="font-size:7pt;font-family:AdobePiStd;">■ </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;">Optimized webpages</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;">Webpages that are optimized for Safari on iPhone display and operate as designed (with the exception </span><span style="font-family:MyriadSet-Medium;">of any elements that rely on unsupported technologies, such as plug-ins, Flash, and Java). In addition, </span><span style="font-family:MyriadSet-Medium;">an optimized webpage correctly scales content for the device screen and is often designed to detect </span><span style="font-family:MyriadSet-Medium;">when it is being viewed on iPhone OS–based devices, so that it can adjust the content it provides </span><span style="font-family:MyriadSet-Medium;">accordingly.</span></p>
<p class="MsoNormal"><span style="font-size:7pt;font-family:AdobePiStd;">■ </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;">Compatible webpages</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;">Webpages that are compatible with Safari on iPhone display and operate as designed (with the exception </span><span style="font-family:MyriadSet-Medium;">of any elements that rely on unsupported technologies, such as plug-ins, Flash, and Java). A compatible </span><span style="font-family:MyriadSet-Medium;">webpage does not tend to take extra steps to optimize the viewing experience on iPhone OS–based </span><span style="font-family:MyriadSet-Medium;">devices, but the device usually displays the page successfully. If you have an existing website or web application, first ensure that it works well on iPhone OS–based devices.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;">Also, you should consider creating a custom icon users can put on their Home screens using the Web Clip feature. In effect, this allows users to keep on their Home Screens a bookmark to your website that looks like a native application icon. To learn more about creating a custom icon and how to make web content look great on iPhone OS–based devices, see </span><em><span style="font-size:10pt;font-family:MyriadSet-MediumItalic;">iPhone Human Interface Guidelines for Web Applications</span></em><span style="font-size:10pt;font-family:MyriadSet-Medium;">.</span></p>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:16pt;font-family:MyriadSet-Medium;color:black;">Hybrid Applications</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">With iPhone OS, you can create an application that combines features of native applications and webpagesA </span><strong><span style="font-size:10pt;font-family:MyriadSet-Bold;color:black;">hybrid application </span></strong><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">is a native iPhone application that provides most of its structure and functionality through a web viewing area, but also tends to contain standard iPhone OS user interface elements.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:MyriadSet-Medium;color:black;">A hybrid application gives users access to web content with an element called a web view </span><span style="font-family:MyriadSet-Medium;">Precisely how you use a web view in your application is up to you, but it’s important to </span><span style="font-family:MyriadSet-Medium;">avoid giving users the impression that your application is merely a mini web browser. A hybrid application </span><span style="font-family:MyriadSet-Medium;">should behave and appear like a native iPhone application; it should not draw attention to the fact that it </span><span style="font-family:MyriadSet-Medium;">depends upon web sources.</span></p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=43&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2010/09/28/what-are-your-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing Iphone applications-Basic steps</title>
		<link>http://iphonetesters.wordpress.com/2010/06/21/testing-iphone-applications-basic-steps/</link>
		<comments>http://iphonetesters.wordpress.com/2010/06/21/testing-iphone-applications-basic-steps/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 11:35:56 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[application testing]]></category>
		<category><![CDATA[Fone monkey]]></category>
		<category><![CDATA[IPAD]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[Software testing]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=38</guid>
		<description><![CDATA[Adding testers to your team Adding Testers to Your Team To add an iPhone OS user to your team as a tester: Obtain the tester’s device ID. The easiest way to obtain this information is through email. Have your tester follow the instructions for sending their device ID to developers in “Sending Your Device ID to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=38&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a name="//apple_ref/doc/uid/TP40007959-CH10-SW1"></a></p>
<p>Adding testers to your team</p>
<p><img src="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/art/tester_program.jpg" alt="Diagram that depicts the relationship between a tester, a developer, and the Program Portal." width="353" height="280" /></p>
<h2>Adding Testers to Your Team</h2>
<p>To add an iPhone OS user to your team as a tester:</p>
<ol>
<li>Obtain the tester’s device ID.
<p>The easiest way to obtain this information is through email. Have your tester follow the instructions for sending their device ID to developers in <a href="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/145-Publishing_Applications_for_Testing/user_testing.html#//apple_ref/doc/uid/TP40007959-CH10-SW10">“Sending Your Device ID to a Developer.”</a></li>
<li>Add the tester’s device ID to the Program Portal.</li>
<li>Generate the tester’s provisioning profile in the Program Portal.
<p>You must select a development certificate, application ID, and only the tester’s device name.</p>
<p><a name="//apple_ref/doc/uid/TP40007959-CH10-SW6"></a><strong>Figure 9-2 </strong>Generic iTunes artwork for test applications</p>
<p><img src="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/art/itunes_calc_generic.jpg" alt="iTunes window with the Library &gt; Applications group selected=" width="403" height="353" /></li>
</ol>
<p>The iTunes artwork your testers see should be your application’s icon. This artwork must be a 512 x 512 JPEG or PNG file named <code>iTunesArtwork</code>. Note that the file must not have an extension.</p>
<p>After generating the file of your application’s icon, follow these steps to add it to your application:</p>
<ol>
<li>Open your project in Xcode.</li>
<li>In the Groups &amp; Files list, select the Resources group.</li>
<li>Choose Project &gt; Add to Project, navigate to your <code>iTunesArtwork</code> file, and click Add.</li>
<li>In the dialog that appears, select the ”Copy items” option and click Add.</li>
</ol>
<p><a name="//apple_ref/doc/uid/TP40007959-CH10-SW4"></a></p>
<h2>Distributing Your Application to Testers</h2>
<p>Before sending your application to a tester build it using the Release build configuration. You can find the directory containing your binary (and its corresponding dSYM file) by choosing Reveal in Finder from the application in the Products group in the Groups &amp; Files list.<br />
<img src="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/art/reveal_binary_in_finder.jpg" alt="Project window showing the shortcut menu for an item in the Products group of the Groups &amp; Files list. The menu’s Reveal in Finder option is highlighted." width="425" height="308" /></p>
<p><a name="//apple_ref/doc/uid/TP40007959-CH10-DontLinkElementID_10"></a></p>
<p>Remember to keep the binary and its corresponding dSYM file on your file system (copy them to a directory that contains a subdirectory for each build you’ve released to your teammates or to testers) so that they’re indexed by Spotlight. Saving both files allows you to symbolize (add symbol information) crash logs testers send you. See<a href="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/145-Publishing_Applications_for_Testing/user_testing.html#//apple_ref/doc/uid/TP40007959-CH10-SW5">“Importing Tester Crash Logs”</a> for more information.</p>
<p>Send your application binary and the tester’s provisioning profile to the tester. One way of accomplishing this task is by compressing these items and emailing them to the tester:</p>
<ol>
<li>In the Finder, select the two files and choose File &gt; Compress.</li>
<li>Name the archive <code>&lt;application_name&gt; for &lt;user_name&gt;.zip</code>. For example, <code>MyTestApp for Anna Haro.zip</code>.</li>
<li>In the Finder, select the archive and choose Finder &gt; Services &gt; Mail &gt; Send File.</li>
<li>In the body of the message make sure to include your application’s target iPhone OS release. If the tester’s iPhone OS version is earlier than the one for which your application was built, they will not be able to install the application on their device.</li>
</ol>
<p>When a tester receives the items, she or he follows the instructions in <a href="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/145-Publishing_Applications_for_Testing/user_testing.html#//apple_ref/doc/uid/TP40007959-CH10-SW9">“Instructions for Application Testers”</a> to install the application and the provisioning profile.</p>
<p><a name="//apple_ref/doc/uid/TP40007959-CH10-SW5"></a></p>
<h2>Importing Tester Crash Logs</h2>
<p>To add tester crash logs to the Organizer to view their symbol information, drag the crash logs to the Crash Logs group under the iPhone Development section.</p>
<p><strong>Important:</strong> For Xcode to symbolize crash logs (to add information about the API used to the crash log), Spotlight must be indexing the volume in which you store your binaries and their corresponding dSYM files.</p>
<h2>Instructions for Application Testers</h2>
<p>This section provides instructions to testers about the procedures to follow to test your iPhone applications on their devices. An application tester is a potential user of your application who wants to test it before it’s released through the App Store.</p>
<p>You may send these instructions, along with any special tasks needed to test your application, to customers interested in testing your application.</p>
<p><a title="Sending Your Device ID to a Developer" name="//apple_ref/doc/uid/TP40007959-CH10-SW10"></a></p>
<h3>Sending Your Device ID to a Developer</h3>
<p>Before a developer can send you an application for testing, they must register your device with Apple under their application-testing program.</p>
<p>To send your device ID to a developer for test-program registration:</p>
<ol>
<li>Launch iTunes.</li>
<li>Connect your device to your computer.</li>
<li>Select the device in the Devices list.</li>
<li>In the Summary pane, click the Serial Number label. It changes to Identifier.</li>
<li>Choose Edit &gt; Copy.</li>
<li>Email your device identifier to the developer. Be sure to include your name and device name in the email.<br />
<h3>Installing an Application for Testing</h3>
<p>After being successfully registered in a developer’s testing program, the developer sends you an archive containing two files: the application and a provisioning profile. You need to install both files into iTunes to run the application on your device.</p>
<p>After opening the archive:</p>
<ol>
<li>Drag the provisioning profile (the file with the <code>.mobileprovision</code> extension) to the iTunes Library group.</li>
<li>Drag the application (the file with the <code>.app</code> extension) to the iTunes Library group.
<p>The application appears in the Applications list.</li>
<li>Sync your device.
<p>If the version of iPhone OS on your device is earlier than the test application can run on, you need to update your device with the current release of iPhone OS.</li>
</ol>
<p><a title="Sending Crash Reports to a Developer" name="//apple_ref/doc/uid/TP40007959-CH10-SW12"></a></p>
<h3>Sending Crash Reports to a Developer</h3>
<p>When the application you’re testing crashes, iPhone OS creates a record of that event. The next time you connect your device to iTunes, iTunes downloads those records (known as crash logs) to your computer. To help get the problem fixed, you should send crash logs of the application you’re testing to its developer.</p>
<p><a title="Sending Crash Reports from Macs" name="//apple_ref/doc/uid/TP40007959-CH10-SW13"></a></p>
<h4>Sending Crash Reports from Macs</h4>
<p>To send crash logs to developers:</p>
<ol>
<li>In the Finder, open a new window.</li>
<li>Choose Go &gt; Go to Folder.</li>
<li>Enter <code>~/Library/Logs/CrashReporter/MobileDevice</code>.</li>
<li>Open the folder named after your device’s name.</li>
<li>Select the crash logs named after the application you’re testing.</li>
<li>Choose Finder &gt; Services &gt; Mail &gt; Send File.</li>
<li>In the New Message window, enter the developer’s email address in the To field and <code>&lt;application_name&gt; crash logs from &lt;your_name&gt;</code> (for example,<code>MyTestApp crash logs from Anna Haro</code>) in the Subject field.</li>
<li>Choose Message &gt; Send.</li>
<li>In the Finder, you may delete the crash logs you sent to avoid sending duplicate reports later.<br />
<table>
<tbody>
<tr>
<td scope="row">
<pre>C:\Users\&lt;user_name&gt;\AppData\Roaming\Apple computer\Logs\CrashReporter/MobileDevice</pre>
</td>
</tr>
</tbody>
</table>
</li>
</ol>
</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=38&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2010/06/21/testing-iphone-applications-basic-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>

		<media:content url="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/art/tester_program.jpg" medium="image">
			<media:title type="html">Diagram that depicts the relationship between a tester, a developer, and the Program Portal.</media:title>
		</media:content>

		<media:content url="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/art/itunes_calc_generic.jpg" medium="image">
			<media:title type="html">iTunes window with the Library &#62; Applications group selected=</media:title>
		</media:content>

		<media:content url="http://developer.apple.com/iphone/library/documentation/xcode/conceptual/iphone_development/art/reveal_binary_in_finder.jpg" medium="image">
			<media:title type="html">Project window showing the shortcut menu for an item in the Products group of the Groups &#38; Files list. The menu’s Reveal in Finder option is highlighted.</media:title>
		</media:content>
	</item>
		<item>
		<title>FoneMonkey: Iphone application functional test automation tool</title>
		<link>http://iphonetesters.wordpress.com/2010/05/31/fonemonkey-iphone-application-functional-test-automation-tool/</link>
		<comments>http://iphonetesters.wordpress.com/2010/05/31/fonemonkey-iphone-application-functional-test-automation-tool/#comments</comments>
		<pubDate>Mon, 31 May 2010 14:31:59 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IPAD]]></category>
		<category><![CDATA[Ipad application]]></category>
		<category><![CDATA[IPAD testing]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[iphone application testing]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=33</guid>
		<description><![CDATA[FoneMonkey is a functional testing tool for the iPhone providing for the interactive creation, editing and playback of automation scripts that exercise an application&#8217;s user interface. Using FoneMonkey, you can create suites of tests that automate performing user operation sequences and verifying results. FoneMonkey is designed to support developer as well as QA testing, and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=33&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>FoneMonkey is a functional testing tool for the iPhone providing for the interactive creation, editing and playback of automation scripts that exercise an application&#8217;s user interface. Using FoneMonkey, you can create suites of tests that automate performing user operation sequences and verifying results. FoneMonkey is designed to support developer as well as QA testing, and FoneMonkey tests can be easily incorporated into continuous integration environments.</p>
<p>FoneMonkey has been donated to the iPhone developer community by <a id="wczw" title="Visit Gorilla Logic's website" href="http://www.gorillalogic.com/">Gorilla Logic</a>, an enterprise application consulting firm that provides complete design, development, testing, and project management services for creating mobile, web, and desktop applications. In addition to mobile applications, Gorilla Logic specializes in developing rich internet applications with Adobe Flex and AJAX-component frameworks, and in devloping complex back-end services with Java.</p>
<p>360logica is exploring opourtunity to use FoneMonkey to automate Iphone and Ipad applications. This will boost our automation in Mobile domain.</p>
<p>for more details Please write aman@360logica.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=33&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2010/05/31/fonemonkey-iphone-application-functional-test-automation-tool/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
		<item>
		<title>Iphone Testing and Debugging</title>
		<link>http://iphonetesters.wordpress.com/2010/02/10/iphone-testing-and-debugging/</link>
		<comments>http://iphonetesters.wordpress.com/2010/02/10/iphone-testing-and-debugging/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 20:54:32 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[Ipad application]]></category>
		<category><![CDATA[iphone application]]></category>
		<category><![CDATA[Iphone test]]></category>
		<category><![CDATA[Load testing]]></category>
		<category><![CDATA[Safari debugging]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=27</guid>
		<description><![CDATA[Get in, get out. That ’ s the attitude that most developers have in testing and debugging their applications. Few developers look forward to these tasks during the development cycle, and so they want to efficiently get into the code, figure out what ’ s working and what ’ s not, fix any problems, and then move on. Given [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=27&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">
<div id="_mcePaste">Get in, get out. That ’ s the attitude that most developers have in testing and debugging their applications. Few developers look forward to these tasks during the development cycle, and so they want to efficiently get into the code, figure out what ’ s working and what ’ s not, fix any problems, and then move on. Given the heterogeneous nature of Web applications, debugging has always been challenging, particularly when trying to work with client &#8211; side JavaScript. To address this need, fairly sophisticated debugging tools have emerged over the past few years among the developer community, most notably Firebug and other add &#8211; ons to Firefox. However, the problem is that most of these testing tools that Web developers have come to rely on for desktop browsers are not yet compatible with the iPhone and iPod touch platform.</div>
<div></div>
<div id="_mcePaste">Many iPhone developers, unsure of where else to turn, end up resorting to alert() debugging — you know, adding alert() throughout the body of the script code to determine programmatic flow and variable values. However, not only is this type of debugging painful, but it can also throw off the timing of your script, making it difficult or impossible to simulate real world results. While the number of debugging and testing tools are indeed limited right now for Mobile Safari,</div>
<div id="_mcePaste">you still have options that either work directly inside Mobile Safari or emulate Mobile Safari on your desktop. You will probably want to incorporate aspects of both as part of your regular debugging and testing process.</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=27&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2010/02/10/iphone-testing-and-debugging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
		<item>
		<title>High Level test scenarios for Iphone application</title>
		<link>http://iphonetesters.wordpress.com/2010/02/08/high-level-test-scenarios-for-iphone-application/</link>
		<comments>http://iphonetesters.wordpress.com/2010/02/08/high-level-test-scenarios-for-iphone-application/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 16:06:59 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Iphone testing]]></category>
		<category><![CDATA[Load testing]]></category>
		<category><![CDATA[Mobile testing]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[SaaS testing]]></category>
		<category><![CDATA[Software testing]]></category>
		<category><![CDATA[Websites testing]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=20</guid>
		<description><![CDATA[Handset application functionality :  perform real iPhone based testing of the application, with various scenarios. Test team will test the application based on defined specifications Device Certification :  certify applications on actual device. Test team should test the performance of the application, resource usage, behavior and interactions Performance and Scalability:  Backend applications will need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=20&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>Handset application functionality :  perform real iPhone based testing of the application, with various scenarios. Test team will test the application based on defined specifications</li>
<li>Device Certification :  certify applications on actual device. Test team should test the performance of the application, resource usage, behavior and interactions</li>
<li>Performance and Scalability:  Backend applications will need to manage the traffic of multiple mobile devices at the same time. This test will identify all the load issues and will help make system more scalable.</li>
<li>Usability &amp; Compatibility : verify the effectiveness of Usability of application onto various devices including interoperability with other applications running on the device.  Certify the Application on Various mobile devices for the correct behavior and interactions</li>
<li>UI Response Application : verify the response of each function and measure the performance of each response.</li>
<li>Settings response : verify all settings available for the application and test the functionality of each setting</li>
<li>Crash Points:  identify all crash points, and will work with development team to resolve them</li>
<li>Low Connectivity:  test the behavior of iPhone App in Low connectivity mode and verify proper behavior</li>
<li>Response Memory Handling:  measure the memory usage of the application and identify all memory leaks</li>
<li>Sleep Mode :  test the application response in the sleep mode.</li>
<li>Accelerometer: test to ensure that iPhone application properly responds to rotations</li>
<li>Battery Usage : measure the battery usage and will provide feedback on increasing battery life</li>
<li>Retrials in Case of network disconnect : test application behavior in case of network disconnect</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=20&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2010/02/08/high-level-test-scenarios-for-iphone-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
		<item>
		<title>Iphone applications in demand</title>
		<link>http://iphonetesters.wordpress.com/2010/02/08/iphone-applications-in-demand/</link>
		<comments>http://iphonetesters.wordpress.com/2010/02/08/iphone-applications-in-demand/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 11:59:07 +0000</pubDate>
		<dc:creator>iphonetesters</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Database testing]]></category>
		<category><![CDATA[iphone application testing]]></category>
		<category><![CDATA[Load testing]]></category>
		<category><![CDATA[SaaS testing]]></category>
		<category><![CDATA[Security Testing]]></category>
		<category><![CDATA[Stress Testing]]></category>

		<guid isPermaLink="false">http://iphonetesters.wordpress.com/?p=12</guid>
		<description><![CDATA[What are those areas in which Iphone applications are getting explored these days: Let&#8217;s give a shot to those areas. Below is list of the same Event handling Touch events Notifications File System knowledge Internal file structure Mobile-commerce Pay Pal Audio/Video streaming MJPEG video streaming Location Based Services Google Maps Google Map APIs based on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=12&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What are those areas in which Iphone applications are getting explored these days: Let&#8217;s give a shot to those areas. Below is list of the same</p>
<ul>
<li>Event handling
<ul>
<li>Touch events</li>
<li>Notifications</li>
</ul>
</li>
<li>File System      knowledge
<ul>
<li>Internal file       structure</li>
</ul>
</li>
<li>Mobile-commerce
<ul>
<li>Pay Pal</li>
</ul>
</li>
<li>Audio/Video      streaming
<ul>
<li>MJPEG video       streaming</li>
</ul>
</li>
<li>Location Based      Services
<ul>
<li>Google Maps</li>
<li>Google Map APIs       based on Java Script</li>
<li>Core Location       Framework</li>
</ul>
</li>
<li>SyncML
<ul>
<li>Contacts</li>
</ul>
</li>
<li>Reusable      components
<ul>
<li>User Interface</li>
<li>Network</li>
</ul>
</li>
<li>Rich User      Interface
<ul>
<li>Native controls</li>
<li>Customized       controls</li>
<li>Screen transition effects</li>
</ul>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iphonetesters.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iphonetesters.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iphonetesters.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iphonetesters.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iphonetesters.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iphonetesters.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iphonetesters.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iphonetesters.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iphonetesters.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iphonetesters.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iphonetesters.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iphonetesters.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iphonetesters.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iphonetesters.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iphonetesters.wordpress.com&amp;blog=11775535&amp;post=12&amp;subd=iphonetesters&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iphonetesters.wordpress.com/2010/02/08/iphone-applications-in-demand/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a638436d64ed5354cfe23d5d79d50e0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iphonetesters</media:title>
		</media:content>
	</item>
	</channel>
</rss>
