Example #1
0
        public static void UnitTest_01()
        {
            //这个测试完成Helloworld.


            Script_TestConstructor tc = new Script_TestConstructor();
        }
Example #2
0
        public static void UnitTest_01()
        {
            //这个测试完成Helloworld.


            Script_TestConstructor tc = new Script_TestConstructor();
        }
Example #3
0
    public Script_TestConstructor()
    {
        Dictionary <string, object> objs = new Dictionary <string, object>();

        Test();
        //Debug.Log(null);
        Test2();
        Test3(22, 33, 44);
        objs.Add("abb", this);
        objs2.Add(this);
        Script_TestConstructor thisislist = objs["abb"] as Script_TestConstructor;

        thisislist.LogtT();
    }