Are there any test frameworks for assembly?

Guys, I want to know if there is any test framework for assembly?

I searched, but does not seem to be a relevant topic.

or, should I write my own test case in my own code? as:

http://pastebin.mozilla.org/1093688

thanks!

+4
source share
1 answer

You can use one of the C unit test libraries / frameworks , since it is possible to call public characters written directly in the assembly. Writing unit tests in an assembly to preserve the same language can be a cumbersome task, and in the end you are more interested in learning about the output / behavior of the function being tested.

0
source

Source: https://habr.com/ru/post/1341080/


All Articles