Exemplo n.º 1
0
        public void GivenSubAssembly_WhenDeriving_ThenRequiredRelationsMustExist()
        {
            var builder = new SubAssemblyBuilder(this.DatabaseSession);
            var subAssembly = builder.Build();

            Assert.IsTrue(this.DatabaseSession.Derive().HasErrors);

            this.DatabaseSession.Rollback();

            builder.WithName("SubAssembly");
            subAssembly = builder.Build();

            Assert.IsFalse(this.DatabaseSession.Derive().HasErrors);
        }
Exemplo n.º 2
0
        public void GivenNewSubAssembly_WhenDeriving_ThenInventoryItemIsCreated()
        {
            var subAssembly = new SubAssemblyBuilder(this.DatabaseSession)
                .WithName("SubAssembly")
                .Build();

            this.DatabaseSession.Derive(true);

            Assert.AreEqual(1, subAssembly.InventoryItemsWherePart.Count);
            Assert.AreEqual(new Warehouses(this.DatabaseSession).FindBy(Warehouses.Meta.Name, "facility"), subAssembly.InventoryItemsWherePart.First.Facility);
        }
Exemplo n.º 3
0
        public void GivenSubAssembly_WhenBuild_ThenPostBuildRelationsMustExist()
        {
            var subAssembly = new SubAssemblyBuilder(this.DatabaseSession)
                .WithName("subAssembly")
                .Build();

            Assert.AreEqual(new InventoryItemKinds(this.DatabaseSession).NonSerialized, subAssembly.InventoryItemKind);
            Assert.AreEqual(new InternalOrganisations(this.DatabaseSession).FindBy(InternalOrganisations.Meta.Name, "internalOrganisation"), subAssembly.OwnedByParty);
        }