view src/test/csharp/jp.ac.u-ryukyu.ie.cr/jungle-network/operations/NetworkAppendChildOperationTest.cs @ 13:4c8932dad7b2

Add Test and only NetworkTreeOperationLogTest.cs not work.
author Kazuma
date Sun, 23 Oct 2016 13:35:21 +0900
parents
children e07d8f241630
line wrap: on
line source

using UnityEngine;
using System.Collections;
using MsgPack;

public class NetworkAppendChildOperationTest : MonoBehaviour {

	// Use this for initialization
	void Start () {
		NetworkAppendChildAtOperation op = new NetworkAppendChildAtOperation(1);
		ObjectPacker pack = new ObjectPacker();
		byte[] value = pack.Pack(op);

		// unpackage
		ObjectPacker unpack = new ObjectPacker();
		NetworkAppendChildAtOperation mOp = unpack.Unpack<NetworkAppendChildAtOperation>(value);
		print(mOp.getPosition()); // add position 1 , get what number?
	}
}