Parcourir la source

Removed questionable fraction test.

Matthias Uiberacker il y a 7 ans
Parent
commit
8ef4b41a00
1 fichiers modifiés avec 0 ajouts et 31 suppressions
  1. 0 31
      test/Common/DataObjects/Fraction_Test.ts

+ 0 - 31
test/Common/DataObjects/Fraction_Test.ts

@@ -35,35 +35,4 @@ describe("Fraction Unit Tests:", () => {
         done();
       });
     });
-    // Todo: remove when typescript porting phase 2 is done an project is compiling properly again
-    describe("blablabla", () => {
-        let dict: Dictionary<Fraction, Fraction> = new Dictionary<Fraction, Fraction>();
-        //     new Collections.Dictionary<Fraction, Fraction>(
-        //     function(f: Fraction): string {
-        //         return f.toString();
-        // });
-
-        let keys: Fraction[] = [];
-        let values: Fraction[] = [];
-
-        for (let i: number = 0; i < 10; ++i) {
-            keys.push(new Fraction(1, i));
-            values.push(new Fraction(i, 1));
-            dict.setValue(keys[i], values[i]);
-        }
-
-        it("retrieved fractions should be equal", (done: MochaDone) => {
-            for (let i: number = 9; i > -1; --i) {
-                let key: Fraction = keys[i];
-                let value: Fraction = values[i];
-
-                //console.log(values[i].toString() + "== " + dict.getValue(key));
-                Logging.debug(values[i].toString() + "== " + dict.getValue(new Fraction(key.Numerator, key.Denominator)));
-                // chai.expect(dict.getValue(key)).to.equal(value);
-                chai.expect(dict.getValue(new Fraction(key.Numerator, key.Denominator))).to.equal(value);
-            }
-
-            done();
-        });
-    });
 });