X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;ds=inline;f=auto_tests%2Ftests%2Fscientific_notation.js;h=d9dab6c7c528a6592cd284f6669d0d199568be35;hb=89fdcedbda6906d90e15d84285c4f6c0b8d96d28;hp=bbdeb6a59357efd157b9f9ace0c9742a38f15d08;hpb=319d0361d2e512ed8049dfedffd79254e491201c;p=dygraphs.git diff --git a/auto_tests/tests/scientific_notation.js b/auto_tests/tests/scientific_notation.js index bbdeb6a..d9dab6c 100644 --- a/auto_tests/tests/scientific_notation.js +++ b/auto_tests/tests/scientific_notation.js @@ -5,14 +5,14 @@ * * @author danvk@google.com (Dan Vanderkam) */ -var scientificNotationTestCase = TestCase("scientific-notation"); +describe("scientific-notation", function() { -scientificNotationTestCase.prototype.setUp = function() { +beforeEach(function() { document.body.innerHTML = "
"; -}; +}); -scientificNotationTestCase.prototype.tearDown = function() { -}; +afterEach(function() { +}); function getXValues(g) { var xs = []; @@ -22,7 +22,7 @@ function getXValues(g) { return xs; } -scientificNotationTestCase.prototype.testScientificInput = function() { +it('testScientificInput', function() { var data = "X,Y\n" + "1.0e1,-1\n" + "2.0e1,0\n" + @@ -32,10 +32,10 @@ scientificNotationTestCase.prototype.testScientificInput = function() { var graph = document.getElementById("graph"); var g = new Dygraph(graph, data, {}); - assertEqualsDelta([10, 20, 30, 40], getXValues(g), 1e-6); -}; + assert.equalsDelta([10, 20, 30, 40], getXValues(g), 1e-6); +}); -scientificNotationTestCase.prototype.testScientificInputPlus = function() { +it('testScientificInputPlus', function() { var data = "X,Y\n" + "1.0e+1,-1\n" + "2.0e+1,0\n" + @@ -45,10 +45,10 @@ scientificNotationTestCase.prototype.testScientificInputPlus = function() { var graph = document.getElementById("graph"); var g = new Dygraph(graph, data, {}); - assertEqualsDelta([10, 20, 30, 40], getXValues(g), 1e-6); -}; + assert.equalsDelta([10, 20, 30, 40], getXValues(g), 1e-6); +}); -scientificNotationTestCase.prototype.testScientificInputMinus = function() { +it('testScientificInputMinus', function() { var data = "X,Y\n" + "1.0e-1,-1\n" + "2.0e-1,0\n" + @@ -58,10 +58,10 @@ scientificNotationTestCase.prototype.testScientificInputMinus = function() { var graph = document.getElementById("graph"); var g = new Dygraph(graph, data, {}); - assertEqualsDelta([0.1, 0.2, 0.3, 0.4], getXValues(g), 1e-6); -}; + assert.equalsDelta([0.1, 0.2, 0.3, 0.4], getXValues(g), 1e-6); +}); -scientificNotationTestCase.prototype.testScientificInputMinusCap = function() { +it('testScientificInputMinusCap', function() { var data = "X,Y\n" + "1.0E-1,-1\n" + "2.0E-1,0\n" + @@ -71,5 +71,7 @@ scientificNotationTestCase.prototype.testScientificInputMinusCap = function() { var graph = document.getElementById("graph"); var g = new Dygraph(graph, data, {}); - assertEqualsDelta([0.1, 0.2, 0.3, 0.4], getXValues(g), 1e-6); -}; + assert.equalsDelta([0.1, 0.2, 0.3, 0.4], getXValues(g), 1e-6); +}); + +});