Skip to content

Commit

Permalink
Merge branch 'master' of github.com:SepiaGroup/Neo4jRestNet
Browse files Browse the repository at this point in the history
Conflicts:
	Neo4jRestNet/Core/Node.cs
	Neo4jRestNet/Core/Relationship.cs.REMOTE.928.cs
	Neo4jRestNet/GremlinPlugin/Gremlin.cs
	Neo4jRestNet/Neo4jRestNet.csproj
  • Loading branch information
SepiaGroup committed Jan 18, 2012
2 parents bf29432 + 8352e5b commit 53ed1d4
Show file tree
Hide file tree
Showing 14 changed files with 972 additions and 2,345 deletions.
6 changes: 3 additions & 3 deletions Neo4jRestNet.Test/App.config
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="neo4j" connectionString="http://localhost:7474/db/data/" />
<add name="neo4jGremlinExtension" connectionString="/ext/GremlinPlugin/graphdb/execute_script/" />
<add name="neo4jCypherExtension" connectionString="/ext/CypherPlugin/graphdb/execute_query/" />
<add name="neo4j" connectionString="http://localhost:7474/db/data/" providerName="Neo4j" />
<add name="neo4jGremlinExtension" connectionString="/ext/GremlinPlugin/graphdb/execute_script/" providerName="Neo4j"/>
<add name="neo4jCypherExtension" connectionString="/ext/CypherPlugin/graphdb/execute_query/" providerName="Neo4j"/>
</connectionStrings>

<appSettings>
Expand Down
9 changes: 9 additions & 0 deletions Neo4jRestNet.Test/EncryptedIDTest.cs
Expand Up @@ -5,6 +5,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Neo4jRestNet.Core;
using System.Security.Cryptography;
using Neo4jRestNet.Core.Implementation;
using Neo4jRestNet.GremlinPlugin;

namespace Neo4jRestNet.Test
Expand All @@ -16,6 +17,14 @@ namespace Neo4jRestNet.Test
public class EncryptedIDTest
{

[TestMethod]
public void GetNode()
{
var node = Node.GetNode(0);

Assert.AreEqual(node.Id, 0);
}

[TestMethod]
public void NewGEIDFromLong()
{
Expand Down

0 comments on commit 53ed1d4

Please sign in to comment.