diff src/test/csharp/jp.ac.u-ryukyu.ie.cr/junge-main/jungle/core/nodeeditor/PutAttributeTest.cs @ 12:b71d9ea6bd8e

Add Network Operation Class. this codes can not test yet.
author Kazuma
date Sun, 23 Oct 2016 12:25:57 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/test/csharp/jp.ac.u-ryukyu.ie.cr/junge-main/jungle/core/nodeeditor/PutAttributeTest.cs	Sun Oct 23 12:25:57 2016 +0900
@@ -0,0 +1,28 @@
+using UnityEngine;
+using System.Collections;
+
+public class PutAttributeTest : MonoBehaviour {
+
+	string key = "hoge";
+	public byte[] value;
+
+	// Use this for initialization
+	void Start () {
+		TreeNode node = new DefaultTreeNode ();
+		PutAttribute op = new PutAttribute (key, value);
+
+		Either<Error, LoggingNode> either = op.edit (node);
+		if (either.isA ()) {
+			Debug.Log ("Error発生");
+		}
+		LoggingNode newnode = either.b ();
+		Debug.Log (newnode);
+		byte[] ret = newnode.getAttributes ().get (key);
+		Debug.Log ("insertしたものは" + ret);
+	}
+	
+	// Update is called once per frame
+	void Update () {
+	
+	}
+}