Tagged Questions

The Test Anything Protocol (TAP) is a protocol to allow communication between unit tests and a test harness. It allows individual tests (TAP producers) to communicate test results to the testing harness in a language-agnostic way.

learn more… | top users | synonyms

15
votes
9answers
772 views

What do you need from a test harness?

I'm one of the people involved in the Test Anything Protocol (TAP) IETF group (if interested, feel free to join the mailing list). Many programming languages are starting to adopt TAP as their ...
6
votes
8answers
1k views

Tap pressure strength detection using accelerometer

Yesterday, in the presentation about the new Garageband for iPad 2, Apple demoed an interesting feature: The detection of the tap pressure by using the accelerometer. (See the drums section on the ...
4
votes
3answers
114 views

Tap duration in cocos2d

Any ideas how to handle tap duration in cocos2d? I need to do something after the user holds his or her finger on a certain sprite for about 1-2 secs. Thanks.
3
votes
1answer
99 views

Java - Parse TAP-0311 into tree structure or XML

First of all, I've Googled this topic very much. I've tried to look and Bouncy Castle and Apache Harmony. But without any luck. I'm trying to parse TAP-0311 (TAP3) files into a simple Java structure ...
3
votes
1answer
202 views

iphone - single tap gesture conflicts with double one

I have a view. I wish to define to kinds of tap gestures for it. So if a user single tap on the view, view will do A; and if a user double tap on the view, it will do B without doing A. I added two ...
3
votes
1answer
285 views

MapKit multiple pins same coordinates, different info selection

I have the following situation: - 3 pins with same coordinates but different title and info - on map there is ony one pin It is possible to tap multiple times on that pin and the annotation displayed ...
3
votes
3answers
370 views

Dynamic Variable Scoping in Ruby 1.9

I'm interested in using dynamic (as opposed to lexical) scoped variables in Ruby. It's seems there isn't a direct built-in way, as with let in Lisp. One possible way to do dynamic scoped variable ...
3
votes
3answers
88 views

Is it possbile to test for expected errors when the testee exits with failure using TAP within Perl?

Suppose you're running some unit tests and you want to see if the method ( or script or function or whatever) you're testing fails as it should. How do you setup such a test? I'm hoping for something ...
3
votes
2answers
871 views

Test Anything Protocol in Shell scripts

Has anyone seen, tried to implement, or otherwise played with TAP in shell? We're looking to create unit tests across many languages (don't get me started on why this doesn't exist so far), and since ...
2
votes
1answer
49 views

sending packets to a tap interface using python

I've been trying to send packets to a tap interface using python. I'm monitoring the tap interface using wireshark and no packets are being received. I'm doing this as an exercise mainly to help my ...
2
votes
1answer
66 views

How can I make a ProgressDialog be cancelable by the back button but not by a screen tap?

I would like to make a ProgressDialog cancelable by the back button but not by a screen tap. Currently I use setCancelable(true). However, in some newer devices a tap on the screen also cancels the ...
2
votes
2answers
658 views

Swipe event triggers tap event for ipod touch

I am using jquery mobile beta and jquery 1.6. On ipod touch, a swipe event is also trigerring the tap event. This issue is not hapenning on android devices. I am trying to google out the solution, but ...
2
votes
2answers
414 views

Deal with mouseover/mouseout event in jQuery for mobile web

I am working on mobile web and facing problem with mouseover/mouseout events used in js. These two events are used to change opacity of links. The problem is, I need to tap twice (testing on iPhone) ...
2
votes
1answer
3k views

jQuery Mobile focus next input on keypress

I have a jquery mobile site with a html form consisting of 4 pin entry input boxes. I want the user to be able to enter a pin in each input field without having to press the iphone keyboards "next" ...
2
votes
1answer
227 views

TAP::Harness perl tests tee output

I am running my tests using TAP::Harness , when I run the tests from command line on a Linux system I get the test results on STDOUT as it is run but when i try to capture the output to a file as well ...
2
votes
1answer
771 views

DEPRECATION WARNING: Object#returning has been deprecated in favor of Object#tap

How to change the following method to use tap to stop the warnings like DEPRECATION WARNING: Object#returning has been deprecated in favor of Object#tap. (called from full_messages at ...
2
votes
3answers
2k views

Android multi touch and double tap working together for an imageview

Hi I have two imageviews in a LinearLayout(Vertical orientation). I am setting setOnTouchListener for both the Imageviews. This way i am able to observe the Multi touch zoom as well as all the ...
2
votes
5answers
4k views

Get coordinates on tapping map in android

I'm trying to make something like this: I have a mapactivity and when the user taps the map it shows the coordinates of that location. I already overrided the onclick method but it isn't even called. ...
2
votes
1answer
1k views

OpenVPN TAP Driver Installation

I'm trying to control multiple instances of OpenVPN's TAP driver in windows via tapinstall. It seems that because all of the devices have the same HWID -- 'tap0901' -- I'm unable to remove any single ...
2
votes
1answer
927 views

Mojo.Event.tap - how to get tap coordinates?

I am having difficulty with finding out how to get tap coordinates from tapEvent object, which is passed to my custom handler (I didn't find it's specification anyway). There is also singleTap event, ...
2
votes
1answer
183 views

How to build unit tests in Guile, which output to the TAP standard?

I would like to have a Guile script, which implements functions, which output test result messages according to the TAP protocol.
2
votes
2answers
156 views

TAP for NUnit?

Anyone know uf there's a dll/runner anywhere that returns TAP output from an NUnit test suite?
1
vote
1answer
49 views

Why does the TAP::Harness Perl module have a “NotBuild.PL” file?

The TAP::Harness 3.23 tarball includes a NotBuild.PL file (and no Build.PL file), but the README specifically states: To use Module::Build (preferred) do: perl Build.PL ./Build ./Build test ./Build ...
1
vote
1answer
280 views

iOS TapGestureRecognizer eats double tap for numberOfTapsRequired=1

I have a MPMoviePlayerViewController and I put a UIView on top of it to recognise single tap then I can show a control panel for the video, and double tap should zoom in/out the video play, so I set ...
1
vote
1answer
98 views

How to check that no ItemizedOverlay is Taped on the MapView?

I created an MapView with 2 different Overlays. One Overlay shows the POIs on the map and the second shows a "bubble" when you click / tab one of the POIs. Now i want to remove the second overlay ...
1
vote
1answer
107 views

Identify single tap gesture within some time interval android

i want to perform some operation when user holds his finger on screen for 2 second(Time may vary). and single tap gesture. i included gesture detection and used Motion Events methods like ActionDown ...
1
vote
0answers
75 views

How to get coordinates of a place on DoubleTap in android?

Hi i want to get coordinates from the map on double tap event. Currently my app is returning coordinates and name of the place on single tap, which makes it very busy and slow. Kindly help me out and ...
1
vote
0answers
73 views

I want to get location on doubleTap event

I am using google api`s and i want to get the location of the place on map on double tap. kindly show me some code sample about how to use the method. Currently my app is showing coordinates on ...
1
vote
1answer
123 views

TAP::Formatter::HTML - Redirecting output of generated HTML to a file

I'm using the TAP::Formatter::HTML module from CPAN in Perl/Windoes. I notice that there is an option that allows us to redirect the HTML output in a file viz. output_file(). However, I think I'm ...
1
vote
1answer
83 views

Link membase to sphinx

I was wondering if anyone ever tried to link membase's (or should I say couchbase's now?) TAP output protocol to sphinx (the open source full text search engine). How did you do it? and how well did ...
1
vote
2answers
147 views

Double tap interval time standard

Is there any standard, say ISO standard, for interval (in miliseconds) between to taps ( clicked on touch devices) which assumed as double tap? I guess it should be long enough to allow slower users ...
1
vote
1answer
253 views

how to detect screen casters android, detect tap pressure

I developed an app that is fun to play with but there are some naughty people who are vandalizing fun of other people by using different type of screen casters and then playing with automated scripts ...
1
vote
3answers
241 views

Add TapGestureRecognizer to UITextView

I want to add an *UITapGestureRecognize*r to my UITextView, because I want to close a "Popup" where the TextView is in. So I want, that the method "hide" of the Popup class is called, when the ...
1
vote
2answers
478 views

How to use tun/tap interface to split packets, tunnel and then reassemble. (similar to MLPPP)

I am looking to create a client/server application that I can use to slit network packets in half, tunnel each half of the packet over a separate udp connection (because each udp connection will be ...
1
vote
2answers
887 views

Problem with UITapGestureRecognizer for double tap

I've two UITapGestureRecognizer: singleTap and doubleTap initialized with two different actions. UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self ...
1
vote
1answer
469 views

Blackberry 6: display menu on long click, run 1 action on short click

Hello fellow BB programmers, if you look at the native Contacts (Addressbook) application on a Blackberry 6 phone with touch screen - it has a very natural behaviour: On a short tap the default ...
1
vote
1answer
1k views

Detect single tap on UIScrollView containing 'n' UIImageViews

I am simply trying to get hold of the UIImageView that was tapped on, from the UIScrollView. I have found 2 ways of achieving the above on the Web. 1st method : create a tap gesture on the ...
1
vote
1answer
60 views

Setting TAP::Formatter::JUnit output filenames

Currently, running prove with TAP::Formatter::JUnit supports an environment variable PERL_TEST_HARNESS_DUMP_TAP that sets a path where a directory t/ will be created, and for each test file x, new ...
1
vote
1answer
403 views

jQuery Mobile - Bad tap behavior on form select

I am building a Rails 3.03 application using jQuery Mobile 1.0a3 (& jQuery 1.5) to render mobile views. I look at it in Safari on an old 1st-generation iPhone. I have a collection_select in one ...
1
vote
0answers
123 views

How to build a tap adapter?

I want to make a tap adapter with a differnt name than normally used. I went thru the 7 steps in OemWin2k.inf file and made all changes as instructed. How to proceed ahead? The syntax checker ...
1
vote
2answers
1k views

How to get position/coordinates of a tap-event with jquery-mobile?

Jquery-mobile supports these events: http://jquerymobile.com/demos/1.0a3/docs/api/events.html How do I get the position of the tap event (for example within an image) on a mobile device? ...
1
vote
2answers
989 views

ccfollow actions in cocos2d

ccfollow actions is following my projectile correctly. when, double tap recognised. see the below code. were am mistaken. here is my code:- - (void)update:(ccTime)dt { if (numTaps==1 ) { ...
1
vote
2answers
226 views

split the objects in cocos2d

am having cocos2d game. in this, when player touches the screen, i want to split the sprite object in to three object.
1
vote
2answers
108 views

TAP (Test Anything Protocol) module for VHDL

Is there a TAP (Test Anything Protocol) implementation for VHDL? It would be nice because then I could use prove to check my results automatically. There are also nice formatting swuites such as ...
1
vote
1answer
121 views

perl: unobtrusively write to IO::Handle opened by TAP::Formatter::HTML

While executing actions on a web page using Test::WWW::Selenium, my perl program writes TAP testcase output to a html report created and updated by TAP::Harness. My Selenium client must log into some ...
1
vote
2answers
2k views

jQtouch tap and link problem

I'm having a problem with jQtouch when using tap on links, I'm trying to get a link to change background color when tapped a la iphone appstore (the blue color) so I'm using this code : ...
1
vote
3answers
125 views

Making images appear… How?

Could someone please tell me how to make an image appear when the user taps the screen and make it appear at the position of the tap. Thanks in advance, Tate
1
vote
1answer
213 views

Can I run perl unit tests under ant jUnit task? How can I handle perl unit tests errors within ant build script?

I'd like to deploy my set of perl scripts by ant. I'm going to run perl test scripts in the ant build.xml and I want to handle perl errors. That's why I wonder, how does ant task work? Does junit ...
1
vote
1answer
290 views

UISwitch not tapped on right area

I placed UISwitch on main view. Now I try change state. But the state changed only when I touch on the left side of the UISwitch. and never on the right. For example in Settings App the airplane ...
1
vote
1answer
263 views

TAP (Test Anything Protocol) module for Verilog or SystemVerilog

Is there a TAP (Test Anything Protocol) implementation for Verilog? It would be nice because then I could use prove to check my results automatically. Update: 10/9/09: It was asked why not use ...

1 2 3