We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this questionbasically i am asking for the tool which can help me in testing of a flash application(flash games). it may be a server based game 开发者_C百科developed in Unity 3D or openspace or Actionscript. Tool should be for performance/ load testing.
You can try SWFWire Debugger. It should be able to help you find memory leaks and slow methods. For stress testing, you probably need to write code specific to your app once you find weak points.
Disclaimer: I wrote this app.
Load testing usually deals with server load, not client load. Most load testing tools have a recorder that will record your requests to the server which you can then play back to the server to simulate load.
Because of this, load testing tools don't tend to drive the client application directly. Opening a browser and an instance of the Flash player is really expensive. To simulate thousands of requests, it is better to just play back the requests to the server without an actual browser.
With that being said, most load testing tools don't actually care if your app was written in Flash, Silverlight or just HTML. The important thing is that it can record the requests/responses to/from the server.
精彩评论