コード例 #1
0
    public void CollectParents_Test4_Manual()
    {
        OT_LocCode lc       = new OT_LocCode();
        Array      parents4 = lc.CollectParents(60353);

        long[] check4 = { 7544, 943, 117, 14 };
        CollectionAssert.AreEqual(check4, parents4);
    }
コード例 #2
0
    public void CollectParents_Test2_Manual()
    {
        OT_LocCode lc       = new OT_LocCode();
        Array      parents2 = lc.CollectParents(514);

        long[] check2 = { 64, 8 };
        CollectionAssert.AreEqual(check2, parents2);
    }
コード例 #3
0
    public void CollectParents_Test3_Manual()
    {
        OT_LocCode lc       = new OT_LocCode();
        Array      parents3 = lc.CollectParents(5394);

        long[] check3 = { 674, 84, 10 };
        CollectionAssert.AreEqual(check3, parents3);
    }
コード例 #4
0
    public void CollectParents_Test1_Manual()
    {
        OT_LocCode lc       = new OT_LocCode();
        Array      parents1 = lc.CollectParents(64);

        long[] check1 = { 8 };
        CollectionAssert.AreEqual(check1, parents1);
    }