add analysis test

pull/1/head
yann300 7 years ago
parent 0f77b94d22
commit 585c8b3aff
  1. 9
      test-browser/tests/staticanalysis.js

@ -11,7 +11,11 @@ contract test1 { address test = tx.origin; }
contract test2 {}
contract TooMuchGas {
uint x;
function() { x++; }
function() {
x++;
uint test;
uint test1;
}
}`}
]
@ -38,7 +42,8 @@ function runTests (browser) {
.click('#staticanalysisView button')
.waitForElementPresent('#staticanalysisresult .warning', 2000, true, function () {
dom.listSelectorContains(['browser/Untitled.sol:2:33: Use of tx.origin',
'Fallback function of contract browser/Untitled.sol:TooMuchGas requires too much gas'],
'Fallback function of contract browser/Untitled.sol:TooMuchGas requires too much gas',
'TooMuchGas.(): Variables have very similar names test and test1.'],
'#staticanalysisresult .warning',
browser, function () {
browser.end()

Loading…
Cancel
Save