Top "Instrumentation" questions

The process of inserting extra diagnostic code during compilation of a given source code.

How do I log at verbose level using `System.Diags...Trace`

Okay don't laugh. In 2005 I read about tracing using System.Diagnostics namespace, it was complicated and I have used log4…

c# .net instrumentation trace
GUI testing with Instrumentation in Android

I want to test my Android applications UI, with keyevents and pressed buttons and so on. I've read som documentation …

android user-interface testing instrumentation
Identify loops in java byte code

I am trying to instrument java byte code. I want to recognize the entry and exit of a java loop, …

java loops bytecode instrumentation
Instrumenting C/C++ codes using LLVM

I just read about the LLVM project and that it could be used to do static analysis on C/C++ …

c++ llvm static-analysis clang instrumentation
Cannot get -javaagent to run without error

I'm trying to create a simple Java Agent program before I implement the real thing. I cannot get it to …

java eclipse instrumentation classnotfoundexception javaagents
How to send key events to a headless emulator in an instrumentation test?

We are currently working on an instrumentation test suite which runs on our build server, but while the tests pass …

android testing build-automation emulation instrumentation
How to instrument java methods?

I want to write a simple java agent which can print the name of a method called by the java …

java instrumentation
How to start Instrumentation project programmatically using Android Intent?

one way to start testcase is, adb shell am instrument -w com.google.vishal.test/android.test.InstrumentationTestRunner i want …

android android-intent android-activity robotium instrumentation
Adding code to a Java class w/ Instrumentation: ASM or BCEL?

I am writing a game engine/library in which I have an event dispatcher class which dispatches events by calling …

java bytecode instrumentation java-bytecode-asm bcel
proguard gradle debug build but not the tests

I enabled proguard for the debug build using: android { buildTypes { debug { runProguard true proguardFile 'proguard-debug.txt' } release { runProguard true proguardFile …

android gradle instrumentation