Code coverage for Solidity smart-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
solidity-coverage/test/units/assembly.js

16 lines
528 B

const assert = require('assert');
const util = require('./../util/util.js');
describe('assembly expressions', () => {
it('should compile after instrumenting an assembly function with spaces in parameters', () => {
const info = util.instrumentAndCompile('assembly/spaces-in-function');
util.report(info.solcOutput.errors);
});
it('should compile after instrumenting an assembly if statement', () => {
const info = util.instrumentAndCompile('assembly/if');
util.report(info.solcOutput.errors);
});
});