コード例 #1
0
ファイル: NodeFormatTests.cs プロジェクト: umaranis/MindMate
        public void CreateNodeFormat_NoFormating_ReturnsDefault()
        {
            var n = new MapNode(new MapTree(), "");

            Assert.AreEqual(NodeFormat.CreateNodeFormat(n), NodeFormat.CreateDefaultFormat());
        }
コード例 #2
0
ファイル: NodeView.cs プロジェクト: umaranis/MindMate
 private void CreateNodeFormat()
 {
     nodeFomat = NodeFormat.CreateNodeFormat(node);
 }
コード例 #3
0
ファイル: NodeFormatTests.cs プロジェクト: umaranis/MindMate
        public void CreateNodeFormat()
        {
            var n = new MapNode(new MapTree(), "");

            Assert.IsNotNull(NodeFormat.CreateNodeFormat(n));
        }