ERC20 Token – Is There a Test Library for Truffle?

erc-20testingtruffle

I have a custom ERC20 token project and I would like to cover the token behaviour with tests. As the ERC20 interface is standardized I wonder whether there are some libraries to test ERC20 functionality or to help me with it?

I use truffle in my project so I prefer tests specifically for this framework but it is not required.

Best Answer

I haven't found out nothing similar to what I was looking for. Hence I have came up with the custom package:

https://github.com/CryptoverseRocks/token-test-suite

With this package all the tests are already written. Just configure and run the test suite contained!

Related Topic