0

Is there any way to test the performance of a desktop application that doesn't use HTTP protocol. it only upload and open some images and also doesn't connect to the internet. I tried Jmeter and Gatling but it doesn't work.

Ahmed Sayed
  • 155
  • 1
  • 2
  • 10

1 Answers1

0

I know what you’re probably thinking. In general, the idea of performance testing of desktop applications is irrelevant, as normally desktop applications are assumed to have only one user. Furthermore, performance testing in this case is limited to application profiling, the process of application analysis using 3rd-party profiling tools and white-box source code testing, in order to identify algorithms which are inefficient, overly large and/or non optimal structures and collections, and to test individual functions, execution time, and associated resource costs, etc.

Refer to this article

Avinash
  • 4,115
  • 2
  • 22
  • 41
  • I already read this before but Jmeter records HTTP and HTTPS flow while my application is a simple application that upload some CT scan images and make some modifications on it without using any APIs or requests – Ahmed Sayed Dec 21 '17 at 09:06