X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;ds=sidebyside;f=auto_tests%2Ftests%2Fscientific_notation.js;h=ebbf2ed5055084a23cb42d922e802905679578c4;hb=a4c3ece0a11e4e5c4f1f51a8bc8b7878d34ee052;hp=bbdeb6a59357efd157b9f9ace0c9742a38f15d08;hpb=0842b24b38096009a743ee1d28c25c4714fa2123;p=dygraphs.git diff --git a/auto_tests/tests/scientific_notation.js b/auto_tests/tests/scientific_notation.js index bbdeb6a..ebbf2ed 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); -}; + assertDeepCloseTo([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); -}; + assertDeepCloseTo([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); -}; + assertDeepCloseTo([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); -}; + assertDeepCloseTo([0.1, 0.2, 0.3, 0.4], getXValues(g), 1e-6); +}); + +});