public GraphSchemaE2ETest(DgraphClientFactory clientFactory)
        {
            ClientFactory = clientFactory;

            AssentConfiguration = new Assent.Configuration()
                                  .UsingNamer(new SubdirectoryNamer("Approved"));
            // FIXME: .UsingSanitiser(...) might want to add this to remove versions etc
            // FIXME: when I add this to a build pipeline it needs this turned off when running on the build server
            // .SetInteractive(...);

            EmbeddedProvider = new EmbeddedFileProvider(Assembly.GetAssembly(typeof(GraphSchemaE2ETest)), "Dgraph_dotnet.tests.e2e.Tests.Data");
        }
Example #2
0
 public SchemaTest(DgraphClientFactory clientFactory) : base(clientFactory)
 {
 }
Example #3
0
 public MutateQueryTest(DgraphClientFactory clientFactory) : base(clientFactory)
 {
 }
Example #4
0
 public TransactionTest(DgraphClientFactory clientFactory) : base(clientFactory)
 {
 }
Example #5
0
 public UpsertTest(DgraphClientFactory clientFactory) : base(clientFactory)
 {
 }
 public MutationsClientTest(DgraphClientFactory clientFactory) : base(clientFactory)
 {
 }
Example #7
0
 public BatchesClientTest(DgraphClientFactory clientFactory) : base(clientFactory)
 {
 }