Example #1
0
        public void CanCreateGraph()
        {
            // Arrange

            var fixture = new Fixture();

            var graphologist = new Graphologist(new MinimalTypeExclusions()
            {
                Exclude = new ExactNamespaceTypeExclusion("System")
            });

            // Act
            var graph = graphologist.Graph(fixture);
            // Assert
        }
Example #2
0
        public void CanCreateGraph()
        {
            // Arrange

            var fixture = new Fixture();

            var graphologist = new Graphologist(new MinimalTypeExclusions()
                                                {
                                                    Exclude = new ExactNamespaceTypeExclusion("System")
                                                });

            // Act
            var graph = graphologist.Graph(fixture);
            // Assert
        }
Example #3
0
        public void WriteGraph()
        {
            // Arrange
            var projectPath = @"..\Graphology.AutoFixture";
            var graphName = "Fixture";

            var fixture = new Fixture();

            var graphologist = new Graphologist(new MinimalTypeExclusions()
            {
                Exclude = new ExactNamespaceTypeExclusion("System")
            });

            // Act
            var graph = graphologist.Graph(fixture);
            graphologist.WriteGraph(fixture, projectPath, graphName);

            // Assert
        }
Example #4
0
        public void WriteGraph()
        {
            // Arrange
            var projectPath = @"..\Graphology.AutoFixture";
            var graphName   = "Fixture";

            var fixture = new Fixture();

            var graphologist = new Graphologist(new MinimalTypeExclusions()
            {
                Exclude = new ExactNamespaceTypeExclusion("System")
            });

            // Act
            var graph = graphologist.Graph(fixture);

            graphologist.WriteGraph(fixture, projectPath, graphName);

            // Assert
        }