Exemple #1
0
    public void TestLoadEquations()
    {
        TextAsset textfile = (TextAsset)Resources.Load("equations");
        Dictionary <string, string> allEquations = new Dictionary <string, string>();

        rocket.Construct(allEquations);


        bool result = rocket.LoadEquations(textfile);

        Assert.AreEqual(true, result);
    }