tap

TAP for NUnit?

Anyone know uf there's a dll/runner anywhere that returns TAP output from an NUnit test suite? ...

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. ...

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 primary testing protocol and they want more from it than what we currently offer. As a result, we'd like to get feedback from people who have a ...

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 we have so much Perl code, we'll be looking at TAP (among others, I imagine). I've found a TAP library for C, Perl, of course, has it bui...

Anyone have some TAP or SNPP examples?

Does anyone know of a good resource with some examples of using the Telocator Alphanumeric Protocol (TAP) and/or the Simple Network Paging Protocol (SNPP) in either C++ or C#? Thanks! ...

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

Hello, 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, which passes custom variables "X" as "Y", which is coordinates, i guess, but I can't invoke that one in Emulator. The point is tha...

Add a Button in UIView on Tapped Point

Hi im trying to add a button on the point where users tapped on the screen. Here is the code in my UIView file - (void)drawRect:(CGRect)rect { // Drawing code NSLog(@"drawRect, %i, %i", firstTouch.x, firstTouch.y); [tagButton drawRect:CGRectMake(firstTouch.x, firstTouch.y, 100, 200)]; [self addSubview:tagButton]; } - (...

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 assertions. Partly TAP gives me some good reporting such as number of files and number of tests. It also can be used with smolder for reportin...

Recognize regular taps in table view on iPhone

Hello, I have a table view with custom cells and I recognize swipes in that cells. That works just fine but I'd like the table view to behave normally. When I tap the wherever on the table view I'd like cell to get selected and perform action tableView:didSelectRowAtIndexPath: Any tips or ideas? Thanks. ...

How to see the version of the TAP file

this is a telecom based query. we receive TAP files from the clearing house. i want see on unix which version of TAP does it belong. how can i do it.Isthere any tool to find the TAP file version? ...

UISlider change value when tapped

Usually you need to hold the thumb image and move it on the slider, is there any property of UISlider or a way to move the thumb image i.e. change value when tapped on the slider ...

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 one with tapinstall -- all of them disappear when i issue tapinstall.exe remove tap0901 Furthermore, when I do install another instance...

iPhone + detect tap of disabled UIControl

Hello, I am developing In App purchase for one existing application. Scenario is something like I have a feature in application (which contain UITextField control), which is initially disabled and when user taps on that UITextField, it shows the message to unlock and buy that feature and once its done, UITextField will be enable. But t...

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 mode chanhed any of those ways. Can anybody help me? ...

Miss a single tap randomly

I have the following code snippets - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [touches anyObject]; NSUInteger numberTaps = [touch tapCount]; // Tapping if (numberTaps > 0) { // do something } ... The above code basically detects a single tap on a small image (width...

Using OpenVPN Windows TAP driver into my own open-source project

Hi, I'm working on a free and open-source project (GPLv3) that basically creates a VPN. The project is meant to be portable (in terms of platform and architecture). On Linux and Mac OSX, I use the built-in system "tap/tun" device driver to create a virtual network interface and it works well. On Windows, I use the TAP driver from Open...

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 parse output of tests? In this case I can transform TAP output within TAP::Formatter::JUnit CPAN module. http://search.cpan.org/dist/TA...

Making images appear... How?

Hi all, 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 ...

Making a UIImageView appear when screen is tapped

Possible Duplicate: Making images appear How? Hi all, 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 ...

iphone- Highlighting div on tap that isn't a link

I'd like to highlight an entire div when the user touches or selects the text contained in the div. I'm able to highlight the text only when it is contained in a span with a javascript function, but when I try to apply the function to the entire div it does not work. In my research I've seen many people remove a highlight with -webkit-...