public void Build_WhenAllFieldsAreSet_ReturnsExpectedPerson()
        {
            const string expectedName = "Alex";
            const string expectedOccupation = "Student";
            const int expectedAge = 21;

            var personBuilder = new PersonBuilder();

            var person = personBuilder.WithName(expectedName)
                .WithOccupation(expectedOccupation)
                .WithAge(expectedAge)
                .Build();

            person.Name.Should().Be(expectedName);
            person.Occupation.Should().Be(expectedOccupation);
            person.Age.Should().Be(expectedAge);
        }
예제 #2
0
        static void Main(string[] args)
        {
            // no builder
            Person person1 = new Person("Michal", "Wojtas", new DateTime(1985, 7, 10), EyeColor.grey, HairColor.brown, 170);

            Console.WriteLine("Hello {0} {1}, your eye color is {2} and your hair color is {3}", person1.FirstName, person1.LastName, person1.EyeCol.ToString(), person1.HairCol.ToString());

            Person person2 = new Person("Gosia", "Kowalska", new DateTime(1982, 11, 1), EyeColor.blue, HairColor.blonde, 165);

            Console.WriteLine("Hello {0} {1}, your eye color is {2} and your hair color is {3}", person2.FirstName, person2.LastName, person2.EyeCol.ToString(), person2.HairCol.ToString());

            // with builder
            PersonBuilder personBuilder = new PersonBuilder();
            Person        person3       = personBuilder.WithFirstName("Waldek").WithLastName("Fajoski").Build();

            Console.WriteLine("Hello man created with Builder pattern - {0} {1}, your eye color is {2} and your hair color is {3}", person3.FirstName, person3.LastName, person3.EyeCol.ToString(), person3.HairCol.ToString());
            Console.ReadLine();
        }
예제 #3
0
 public PersonDirector(PersonBuilder pb)
 {
     this.pb = pb;
 }
예제 #4
0
 static void Main(string[] args)
 {
     Person person1 = new PersonBuilder().Build();
     Person person2 = new PersonBuilder().WithAge(35).Build();
     Person person3 = new PersonBuilder().WithAge(39).Build();
 }