pure-orm 2.3.0 → 4.0.0-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +2 -2
- package/.prettierignore +1 -0
- package/README.md +426 -441
- package/babel.config.js +6 -0
- package/coverage/clover.xml +2437 -0
- package/coverage/coverage-final.json +125 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +79 -0
- package/coverage/lcov-report/business-object.ts.html +1290 -0
- package/coverage/lcov-report/dao/base-dao.js.html +507 -0
- package/coverage/lcov-report/dao/index.html +97 -0
- package/coverage/lcov-report/dist/business-object.js.html +1164 -0
- package/coverage/lcov-report/dist/examples/blog/business-objects/article.js.html +216 -0
- package/coverage/lcov-report/dist/examples/blog/business-objects/article_tag.js.html +168 -0
- package/coverage/lcov-report/dist/examples/blog/business-objects/article_tags.js.html +99 -0
- package/coverage/lcov-report/dist/examples/blog/business-objects/articles.js.html +72 -0
- package/coverage/lcov-report/dist/examples/blog/business-objects/index.html +136 -0
- package/coverage/lcov-report/dist/examples/blog/business-objects/person.js.html +213 -0
- package/coverage/lcov-report/dist/examples/blog/business-objects/tag.js.html +156 -0
- package/coverage/lcov-report/dist/examples/blog/entities/article.js.html +216 -0
- package/coverage/lcov-report/dist/examples/blog/entities/article_tag.js.html +168 -0
- package/coverage/lcov-report/dist/examples/blog/entities/index.html +136 -0
- package/coverage/lcov-report/dist/examples/blog/entities/person.js.html +213 -0
- package/coverage/lcov-report/dist/examples/blog/entities/tag.js.html +156 -0
- package/coverage/lcov-report/dist/examples/blog/index.html +97 -0
- package/coverage/lcov-report/dist/examples/blog/models/article.js.html +216 -0
- package/coverage/lcov-report/dist/examples/blog/models/article_tag.js.html +168 -0
- package/coverage/lcov-report/dist/examples/blog/models/index.html +136 -0
- package/coverage/lcov-report/dist/examples/blog/models/person.js.html +213 -0
- package/coverage/lcov-report/dist/examples/blog/models/tag.js.html +156 -0
- package/coverage/lcov-report/dist/examples/blog/orm.js.html +120 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/index.html +149 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/line-items.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/order.js.html +306 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/product-variant.js.html +222 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/product-variants.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/product.js.html +192 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/products.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order/business-objects/utm-source.js.html +162 -0
- package/coverage/lcov-report/dist/examples/order/entities/index.html +149 -0
- package/coverage/lcov-report/dist/examples/order/entities/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/examples/order/entities/order.js.html +306 -0
- package/coverage/lcov-report/dist/examples/order/entities/product-variant.js.html +222 -0
- package/coverage/lcov-report/dist/examples/order/entities/product.js.html +192 -0
- package/coverage/lcov-report/dist/examples/order/entities/utm-source.js.html +162 -0
- package/coverage/lcov-report/dist/examples/order/index.html +97 -0
- package/coverage/lcov-report/dist/examples/order/models/index.html +149 -0
- package/coverage/lcov-report/dist/examples/order/models/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/examples/order/models/order.js.html +306 -0
- package/coverage/lcov-report/dist/examples/order/models/product-variant.js.html +222 -0
- package/coverage/lcov-report/dist/examples/order/models/product.js.html +192 -0
- package/coverage/lcov-report/dist/examples/order/models/utm-source.js.html +162 -0
- package/coverage/lcov-report/dist/examples/order/orm.js.html +126 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/actual-product-variant.js.html +141 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/actual-product-variants.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/color.js.html +150 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/colors.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/customer.js.html +141 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/customers.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/gender.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/genders.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/index.html +344 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/inventory-level.js.html +192 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/inventory-levels.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/line-items.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/order.js.html +339 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/parcel-event.js.html +168 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/parcel-events.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/parcels.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/physical-address.js.html +204 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/physical-addresses.js.html +108 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/product-variant-image.js.html +174 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/product-variant-images.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/product-variant.js.html +258 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/product-variants.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/product.js.html +198 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/products.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/refund.js.html +198 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/refunds.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/shipment-actual-product-variant.js.html +180 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/shipment-actual-product-variants.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/shipment.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/shipments.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/size.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/sizes.js.html +99 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/utm-medium.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/business-objects/utm-source.js.html +147 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/actual-product-variant.js.html +141 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/color.js.html +150 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/customer.js.html +141 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/gender.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/index.html +344 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/inventory-level.js.html +192 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/order.js.html +339 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/parcel-event.js.html +168 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/physical-address.js.html +204 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/product-variant-image.js.html +174 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/product-variant.js.html +258 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/product.js.html +198 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/refund.js.html +198 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/shipment-actual-product-variant.js.html +180 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/shipment.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/size.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/utm-medium.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/entities/utm-source.js.html +147 -0
- package/coverage/lcov-report/dist/examples/order-more/index.html +97 -0
- package/coverage/lcov-report/dist/examples/order-more/models/actual-product-variant.js.html +141 -0
- package/coverage/lcov-report/dist/examples/order-more/models/color.js.html +150 -0
- package/coverage/lcov-report/dist/examples/order-more/models/customer.js.html +141 -0
- package/coverage/lcov-report/dist/examples/order-more/models/gender.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/models/index.html +344 -0
- package/coverage/lcov-report/dist/examples/order-more/models/inventory-level.js.html +192 -0
- package/coverage/lcov-report/dist/examples/order-more/models/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/examples/order-more/models/order.js.html +339 -0
- package/coverage/lcov-report/dist/examples/order-more/models/parcel-event.js.html +168 -0
- package/coverage/lcov-report/dist/examples/order-more/models/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/examples/order-more/models/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/examples/order-more/models/physical-address.js.html +204 -0
- package/coverage/lcov-report/dist/examples/order-more/models/product-variant-image.js.html +174 -0
- package/coverage/lcov-report/dist/examples/order-more/models/product-variant.js.html +258 -0
- package/coverage/lcov-report/dist/examples/order-more/models/product.js.html +198 -0
- package/coverage/lcov-report/dist/examples/order-more/models/refund.js.html +198 -0
- package/coverage/lcov-report/dist/examples/order-more/models/shipment-actual-product-variant.js.html +180 -0
- package/coverage/lcov-report/dist/examples/order-more/models/shipment.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/models/size.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/models/utm-medium.js.html +144 -0
- package/coverage/lcov-report/dist/examples/order-more/models/utm-source.js.html +147 -0
- package/coverage/lcov-report/dist/examples/order-more/orm.js.html +216 -0
- package/coverage/lcov-report/dist/factory.js.html +501 -0
- package/coverage/lcov-report/dist/index.html +123 -0
- package/coverage/lcov-report/dist/index.js.html +153 -0
- package/coverage/lcov-report/dist/src/business-object.js.html +1218 -0
- package/coverage/lcov-report/dist/src/factory.js.html +1605 -0
- package/coverage/lcov-report/dist/src/index.html +110 -0
- package/coverage/lcov-report/dist/src/index.js.html +84 -0
- package/coverage/lcov-report/dist/test-utils/blog/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/blog/models/article.js.html +216 -0
- package/coverage/lcov-report/dist/test-utils/blog/models/article_tag.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/blog/models/article_tag.ts.html +192 -0
- package/coverage/lcov-report/dist/test-utils/blog/models/index.html +136 -0
- package/coverage/lcov-report/dist/test-utils/blog/models/person.js.html +213 -0
- package/coverage/lcov-report/dist/test-utils/blog/models/tag.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/blog/models/tag.ts.html +177 -0
- package/coverage/lcov-report/dist/test-utils/blog/orm.js.html +105 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/index.html +149 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/line-item.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/line-items.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/order.js.html +150 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/parcel-event.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/parcel-events.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/five/business-objects/parcels.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/five/entities/index.html +149 -0
- package/coverage/lcov-report/dist/test-utils/five/entities/line-item.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/five/entities/order.js.html +150 -0
- package/coverage/lcov-report/dist/test-utils/five/entities/parcel-event.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/five/entities/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/five/entities/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/five/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/five/models/index.html +149 -0
- package/coverage/lcov-report/dist/test-utils/five/models/line-item.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/five/models/order.js.html +141 -0
- package/coverage/lcov-report/dist/test-utils/five/models/parcel-event.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/five/models/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/five/models/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/five/orm.js.html +126 -0
- package/coverage/lcov-report/dist/test-utils/nine/business-objects/feature-switch.js.html +147 -0
- package/coverage/lcov-report/dist/test-utils/nine/business-objects/feature-switches.js.html +108 -0
- package/coverage/lcov-report/dist/test-utils/nine/business-objects/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/nine/entities/feature-switch.js.html +147 -0
- package/coverage/lcov-report/dist/test-utils/nine/entities/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/nine/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/nine/models/feature-switch.js.html +147 -0
- package/coverage/lcov-report/dist/test-utils/nine/models/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/nine/orm.js.html +96 -0
- package/coverage/lcov-report/dist/test-utils/order/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/order/models/index.html +149 -0
- package/coverage/lcov-report/dist/test-utils/order/models/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/test-utils/order/models/order.js.html +306 -0
- package/coverage/lcov-report/dist/test-utils/order/models/product-variant.js.html +222 -0
- package/coverage/lcov-report/dist/test-utils/order/models/product.js.html +192 -0
- package/coverage/lcov-report/dist/test-utils/order/models/utm-source.js.html +147 -0
- package/coverage/lcov-report/dist/test-utils/order/orm.js.html +126 -0
- package/coverage/lcov-report/dist/test-utils/order-more/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/actual-product-variant.js.html +141 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/color.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/customer.js.html +141 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/gender.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/index.html +344 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/inventory-level.js.html +192 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/line-item.js.html +219 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/order.js.html +339 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/parcel-event.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/physical-address.js.html +204 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/product-variant-image.js.html +174 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/product-variant.js.html +258 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/product.js.html +198 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/refund.js.html +198 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/shipment-actual-product-variant.js.html +180 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/shipment.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/size.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/utm-medium.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/order-more/models/utm-source.js.html +147 -0
- package/coverage/lcov-report/dist/test-utils/order-more/orm.js.html +216 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/customer.js.html +141 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/customers.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/index.html +149 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/line-item.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/order.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/six/business-objects/parcels.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/six/entities/customer.js.html +141 -0
- package/coverage/lcov-report/dist/test-utils/six/entities/index.html +149 -0
- package/coverage/lcov-report/dist/test-utils/six/entities/line-item.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/six/entities/order.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/six/entities/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/six/entities/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/six/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/six/models/customer.js.html +141 -0
- package/coverage/lcov-report/dist/test-utils/six/models/index.html +149 -0
- package/coverage/lcov-report/dist/test-utils/six/models/line-item.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/six/models/order.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/six/models/parcel-line-item.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/six/models/parcel.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/six/orm.js.html +126 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/audience.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/audiences.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/brand.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/brands.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/categories.js.html +108 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/category.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/index.html +188 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/member.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/members.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/passion.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/passions.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/product.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/products.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/recommendation-audience.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/recommendation-audiences.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/recommendation.js.html +204 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/business-objects/recommendations.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/audience.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/brand.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/category.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/index.html +188 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/member.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/passion.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/product.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/recommendation-audience.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/entities/recommendation.js.html +204 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/audience.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/brand.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/category.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/index.html +188 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/member.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/passion.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/product.js.html +156 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/recommendation-audience.js.html +168 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/models/recommendation.js.html +204 -0
- package/coverage/lcov-report/dist/test-utils/thirteen/orm.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/three/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/three/results.js.html +1335 -0
- package/coverage/lcov-report/dist/test-utils/twelve/business-objects/index.html +110 -0
- package/coverage/lcov-report/dist/test-utils/twelve/business-objects/member.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/twelve/business-objects/members.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/twelve/business-objects/prompt.js.html +165 -0
- package/coverage/lcov-report/dist/test-utils/twelve/business-objects/prompts.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/twelve/entities/index.html +110 -0
- package/coverage/lcov-report/dist/test-utils/twelve/entities/member.js.html +144 -0
- package/coverage/lcov-report/dist/test-utils/twelve/entities/prompt.js.html +165 -0
- package/coverage/lcov-report/dist/test-utils/twelve/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/twelve/models/index.html +110 -0
- package/coverage/lcov-report/dist/test-utils/twelve/models/member.js.html +138 -0
- package/coverage/lcov-report/dist/test-utils/twelve/models/prompt.js.html +165 -0
- package/coverage/lcov-report/dist/test-utils/twelve/orm.js.html +99 -0
- package/coverage/lcov-report/dist/test-utils/two/index.html +97 -0
- package/coverage/lcov-report/dist/test-utils/two/results.js.html +1035 -0
- package/coverage/lcov-report/examples/blog/bo/article.js.html +174 -0
- package/coverage/lcov-report/examples/blog/bo/article_tag.js.html +150 -0
- package/coverage/lcov-report/examples/blog/bo/article_tags.js.html +99 -0
- package/coverage/lcov-report/examples/blog/bo/articles.js.html +99 -0
- package/coverage/lcov-report/examples/blog/bo/base.js.html +84 -0
- package/coverage/lcov-report/examples/blog/bo/index.html +162 -0
- package/coverage/lcov-report/examples/blog/bo/person.js.html +153 -0
- package/coverage/lcov-report/examples/blog/bo/tag.js.html +114 -0
- package/coverage/lcov-report/examples/blog/business-objects/article.js.html +174 -0
- package/coverage/lcov-report/examples/blog/business-objects/article.ts.html +264 -0
- package/coverage/lcov-report/examples/blog/business-objects/article_tag.js.html +150 -0
- package/coverage/lcov-report/examples/blog/business-objects/article_tag.ts.html +192 -0
- package/coverage/lcov-report/examples/blog/business-objects/article_tags.js.html +99 -0
- package/coverage/lcov-report/examples/blog/business-objects/articles.js.html +72 -0
- package/coverage/lcov-report/examples/blog/business-objects/index.html +136 -0
- package/coverage/lcov-report/examples/blog/business-objects/person.js.html +153 -0
- package/coverage/lcov-report/examples/blog/business-objects/person.ts.html +303 -0
- package/coverage/lcov-report/examples/blog/business-objects/tag.js.html +114 -0
- package/coverage/lcov-report/examples/blog/business-objects/tag.ts.html +177 -0
- package/coverage/lcov-report/examples/blog/business-objects.js.html +99 -0
- package/coverage/lcov-report/examples/blog/entities/article.ts.html +264 -0
- package/coverage/lcov-report/examples/blog/entities/article_tag.ts.html +192 -0
- package/coverage/lcov-report/examples/blog/entities/index.html +136 -0
- package/coverage/lcov-report/examples/blog/entities/person.ts.html +303 -0
- package/coverage/lcov-report/examples/blog/entities/tag.ts.html +177 -0
- package/coverage/lcov-report/examples/blog/index.html +97 -0
- package/coverage/lcov-report/examples/blog/models/article.ts.html +264 -0
- package/coverage/lcov-report/examples/blog/models/article_tag.ts.html +192 -0
- package/coverage/lcov-report/examples/blog/models/index.html +136 -0
- package/coverage/lcov-report/examples/blog/models/person.ts.html +303 -0
- package/coverage/lcov-report/examples/blog/models/tag.ts.html +177 -0
- package/coverage/lcov-report/examples/blog/orm.js.html +111 -0
- package/coverage/lcov-report/examples/blog/orm.ts.html +117 -0
- package/coverage/lcov-report/examples/order/bo/base.js.html +84 -0
- package/coverage/lcov-report/examples/order/bo/index.html +201 -0
- package/coverage/lcov-report/examples/order/bo/line-item.js.html +177 -0
- package/coverage/lcov-report/examples/order/bo/line-items.js.html +99 -0
- package/coverage/lcov-report/examples/order/bo/order.js.html +210 -0
- package/coverage/lcov-report/examples/order/bo/orders.js.html +99 -0
- package/coverage/lcov-report/examples/order/bo/product-variant.js.html +177 -0
- package/coverage/lcov-report/examples/order/bo/product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order/bo/product.js.html +162 -0
- package/coverage/lcov-report/examples/order/bo/products.js.html +99 -0
- package/coverage/lcov-report/examples/order/bo/utm-source.js.html +114 -0
- package/coverage/lcov-report/examples/order/business-objects/index.html +149 -0
- package/coverage/lcov-report/examples/order/business-objects/line-item.js.html +177 -0
- package/coverage/lcov-report/examples/order/business-objects/line-item.ts.html +267 -0
- package/coverage/lcov-report/examples/order/business-objects/line-items.js.html +99 -0
- package/coverage/lcov-report/examples/order/business-objects/order.js.html +210 -0
- package/coverage/lcov-report/examples/order/business-objects/order.ts.html +390 -0
- package/coverage/lcov-report/examples/order/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/examples/order/business-objects/product-variant.js.html +177 -0
- package/coverage/lcov-report/examples/order/business-objects/product-variant.ts.html +273 -0
- package/coverage/lcov-report/examples/order/business-objects/product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order/business-objects/product.js.html +162 -0
- package/coverage/lcov-report/examples/order/business-objects/product.ts.html +228 -0
- package/coverage/lcov-report/examples/order/business-objects/products.js.html +99 -0
- package/coverage/lcov-report/examples/order/business-objects/utm-source.js.html +114 -0
- package/coverage/lcov-report/examples/order/business-objects/utm-source.ts.html +183 -0
- package/coverage/lcov-report/examples/order/business-objects.js.html +102 -0
- package/coverage/lcov-report/examples/order/entities/index.html +149 -0
- package/coverage/lcov-report/examples/order/entities/line-item.ts.html +267 -0
- package/coverage/lcov-report/examples/order/entities/order.ts.html +390 -0
- package/coverage/lcov-report/examples/order/entities/product-variant.ts.html +273 -0
- package/coverage/lcov-report/examples/order/entities/product.ts.html +228 -0
- package/coverage/lcov-report/examples/order/entities/utm-source.ts.html +183 -0
- package/coverage/lcov-report/examples/order/index.html +97 -0
- package/coverage/lcov-report/examples/order/models/index.html +149 -0
- package/coverage/lcov-report/examples/order/models/line-item.ts.html +267 -0
- package/coverage/lcov-report/examples/order/models/order.ts.html +390 -0
- package/coverage/lcov-report/examples/order/models/product-variant.ts.html +273 -0
- package/coverage/lcov-report/examples/order/models/product.ts.html +228 -0
- package/coverage/lcov-report/examples/order/models/utm-source.ts.html +183 -0
- package/coverage/lcov-report/examples/order/orm.js.html +129 -0
- package/coverage/lcov-report/examples/order/orm.ts.html +123 -0
- package/coverage/lcov-report/examples/order-more/bo/actual-product-variant.js.html +153 -0
- package/coverage/lcov-report/examples/order-more/bo/actual-product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/base.js.html +84 -0
- package/coverage/lcov-report/examples/order-more/bo/color.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/bo/colors.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/customer.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/bo/customers.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/gender.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/bo/genders.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/index.html +578 -0
- package/coverage/lcov-report/examples/order-more/bo/inventory-level.js.html +162 -0
- package/coverage/lcov-report/examples/order-more/bo/inventory-levels.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/line-item.js.html +177 -0
- package/coverage/lcov-report/examples/order-more/bo/line-items.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/order.js.html +225 -0
- package/coverage/lcov-report/examples/order-more/bo/orders.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/parcel-event.js.html +135 -0
- package/coverage/lcov-report/examples/order-more/bo/parcel-events.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/parcel-line-item.js.html +150 -0
- package/coverage/lcov-report/examples/order-more/bo/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/parcel.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/bo/parcels.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/physical-address.js.html +168 -0
- package/coverage/lcov-report/examples/order-more/bo/physical-addresses.js.html +108 -0
- package/coverage/lcov-report/examples/order-more/bo/product-variant-image.js.html +153 -0
- package/coverage/lcov-report/examples/order-more/bo/product-variant-images.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/product-variant.js.html +195 -0
- package/coverage/lcov-report/examples/order-more/bo/product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/product.js.html +165 -0
- package/coverage/lcov-report/examples/order-more/bo/products.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/refund.js.html +162 -0
- package/coverage/lcov-report/examples/order-more/bo/refunds.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/shipment-actual-product-variant.js.html +156 -0
- package/coverage/lcov-report/examples/order-more/bo/shipment-actual-product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/shipment.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/bo/shipments.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/size.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/bo/sizes.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/bo/utm-medium.js.html +114 -0
- package/coverage/lcov-report/examples/order-more/bo/utm-source.js.html +114 -0
- package/coverage/lcov-report/examples/order-more/business-objects/actual-product-variant.js.html +153 -0
- package/coverage/lcov-report/examples/order-more/business-objects/actual-product-variant.ts.html +156 -0
- package/coverage/lcov-report/examples/order-more/business-objects/actual-product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/color.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/business-objects/color.ts.html +174 -0
- package/coverage/lcov-report/examples/order-more/business-objects/colors.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/customer.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/business-objects/customer.ts.html +156 -0
- package/coverage/lcov-report/examples/order-more/business-objects/customers.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/gender.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/business-objects/gender.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/business-objects/genders.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/index.html +344 -0
- package/coverage/lcov-report/examples/order-more/business-objects/inventory-level.js.html +162 -0
- package/coverage/lcov-report/examples/order-more/business-objects/inventory-level.ts.html +231 -0
- package/coverage/lcov-report/examples/order-more/business-objects/inventory-levels.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/line-item.js.html +177 -0
- package/coverage/lcov-report/examples/order-more/business-objects/line-item.ts.html +267 -0
- package/coverage/lcov-report/examples/order-more/business-objects/line-items.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/order.js.html +225 -0
- package/coverage/lcov-report/examples/order-more/business-objects/order.ts.html +441 -0
- package/coverage/lcov-report/examples/order-more/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel-event.js.html +135 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel-event.ts.html +192 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel-events.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel-line-item.js.html +150 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcel.ts.html +150 -0
- package/coverage/lcov-report/examples/order-more/business-objects/parcels.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/physical-address.js.html +168 -0
- package/coverage/lcov-report/examples/order-more/business-objects/physical-address.ts.html +246 -0
- package/coverage/lcov-report/examples/order-more/business-objects/physical-addresses.js.html +108 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product-variant-image.js.html +153 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product-variant-image.ts.html +201 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product-variant-images.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product-variant.js.html +195 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product-variant.ts.html +327 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product.js.html +165 -0
- package/coverage/lcov-report/examples/order-more/business-objects/product.ts.html +237 -0
- package/coverage/lcov-report/examples/order-more/business-objects/products.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/refund.js.html +162 -0
- package/coverage/lcov-report/examples/order-more/business-objects/refund.ts.html +237 -0
- package/coverage/lcov-report/examples/order-more/business-objects/refunds.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/shipment-actual-product-variant.js.html +156 -0
- package/coverage/lcov-report/examples/order-more/business-objects/shipment-actual-product-variant.ts.html +210 -0
- package/coverage/lcov-report/examples/order-more/business-objects/shipment-actual-product-variants.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/shipment.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/business-objects/shipment.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/business-objects/shipments.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/size.js.html +132 -0
- package/coverage/lcov-report/examples/order-more/business-objects/size.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/business-objects/sizes.js.html +99 -0
- package/coverage/lcov-report/examples/order-more/business-objects/utm-medium.js.html +114 -0
- package/coverage/lcov-report/examples/order-more/business-objects/utm-medium.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/business-objects/utm-source.js.html +114 -0
- package/coverage/lcov-report/examples/order-more/business-objects/utm-source.ts.html +168 -0
- package/coverage/lcov-report/examples/order-more/business-objects.js.html +147 -0
- package/coverage/lcov-report/examples/order-more/entities/actual-product-variant.ts.html +156 -0
- package/coverage/lcov-report/examples/order-more/entities/color.ts.html +174 -0
- package/coverage/lcov-report/examples/order-more/entities/customer.ts.html +156 -0
- package/coverage/lcov-report/examples/order-more/entities/gender.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/entities/index.html +344 -0
- package/coverage/lcov-report/examples/order-more/entities/inventory-level.ts.html +231 -0
- package/coverage/lcov-report/examples/order-more/entities/line-item.ts.html +267 -0
- package/coverage/lcov-report/examples/order-more/entities/order.ts.html +441 -0
- package/coverage/lcov-report/examples/order-more/entities/parcel-event.ts.html +192 -0
- package/coverage/lcov-report/examples/order-more/entities/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/examples/order-more/entities/parcel.ts.html +150 -0
- package/coverage/lcov-report/examples/order-more/entities/physical-address.ts.html +246 -0
- package/coverage/lcov-report/examples/order-more/entities/product-variant-image.ts.html +201 -0
- package/coverage/lcov-report/examples/order-more/entities/product-variant.ts.html +327 -0
- package/coverage/lcov-report/examples/order-more/entities/product.ts.html +237 -0
- package/coverage/lcov-report/examples/order-more/entities/refund.ts.html +237 -0
- package/coverage/lcov-report/examples/order-more/entities/shipment-actual-product-variant.ts.html +210 -0
- package/coverage/lcov-report/examples/order-more/entities/shipment.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/entities/size.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/entities/utm-medium.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/entities/utm-source.ts.html +168 -0
- package/coverage/lcov-report/examples/order-more/index.html +97 -0
- package/coverage/lcov-report/examples/order-more/models/actual-product-variant.ts.html +156 -0
- package/coverage/lcov-report/examples/order-more/models/color.ts.html +174 -0
- package/coverage/lcov-report/examples/order-more/models/customer.ts.html +156 -0
- package/coverage/lcov-report/examples/order-more/models/gender.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/models/index.html +344 -0
- package/coverage/lcov-report/examples/order-more/models/inventory-level.ts.html +231 -0
- package/coverage/lcov-report/examples/order-more/models/line-item.ts.html +267 -0
- package/coverage/lcov-report/examples/order-more/models/order.ts.html +441 -0
- package/coverage/lcov-report/examples/order-more/models/parcel-event.ts.html +192 -0
- package/coverage/lcov-report/examples/order-more/models/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/examples/order-more/models/parcel.ts.html +150 -0
- package/coverage/lcov-report/examples/order-more/models/physical-address.ts.html +246 -0
- package/coverage/lcov-report/examples/order-more/models/product-variant-image.ts.html +201 -0
- package/coverage/lcov-report/examples/order-more/models/product-variant.ts.html +327 -0
- package/coverage/lcov-report/examples/order-more/models/product.ts.html +237 -0
- package/coverage/lcov-report/examples/order-more/models/refund.ts.html +237 -0
- package/coverage/lcov-report/examples/order-more/models/shipment-actual-product-variant.ts.html +210 -0
- package/coverage/lcov-report/examples/order-more/models/shipment.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/models/size.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/models/utm-medium.ts.html +162 -0
- package/coverage/lcov-report/examples/order-more/models/utm-source.ts.html +168 -0
- package/coverage/lcov-report/examples/order-more/orm.js.html +216 -0
- package/coverage/lcov-report/examples/order-more/orm.ts.html +213 -0
- package/coverage/lcov-report/five/bo/base.js.html +84 -0
- package/coverage/lcov-report/five/bo/index.html +227 -0
- package/coverage/lcov-report/five/bo/line-item.js.html +135 -0
- package/coverage/lcov-report/five/bo/line-items.js.html +96 -0
- package/coverage/lcov-report/five/bo/order.js.html +132 -0
- package/coverage/lcov-report/five/bo/orders.js.html +96 -0
- package/coverage/lcov-report/five/bo/parcel-event.js.html +141 -0
- package/coverage/lcov-report/five/bo/parcel-events.js.html +96 -0
- package/coverage/lcov-report/five/bo/parcel-line-item.js.html +141 -0
- package/coverage/lcov-report/five/bo/parcel-line-items.js.html +96 -0
- package/coverage/lcov-report/five/bo/parcel.js.html +129 -0
- package/coverage/lcov-report/five/bo/parcels.js.html +96 -0
- package/coverage/lcov-report/five/business-objects.js.html +102 -0
- package/coverage/lcov-report/five/index.html +97 -0
- package/coverage/lcov-report/fixtures/index.html +110 -0
- package/coverage/lcov-report/fixtures/three.js.html +1335 -0
- package/coverage/lcov-report/fixtures/two.js.html +1035 -0
- package/coverage/lcov-report/index.html +578 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/six/bo/base.js.html +84 -0
- package/coverage/lcov-report/six/bo/customer.js.html +135 -0
- package/coverage/lcov-report/six/bo/customers.js.html +96 -0
- package/coverage/lcov-report/six/bo/index.html +214 -0
- package/coverage/lcov-report/six/bo/line-item.js.html +138 -0
- package/coverage/lcov-report/six/bo/order.js.html +138 -0
- package/coverage/lcov-report/six/bo/orders.js.html +96 -0
- package/coverage/lcov-report/six/bo/parcel-line-item.js.html +144 -0
- package/coverage/lcov-report/six/bo/parcel-line-items.js.html +96 -0
- package/coverage/lcov-report/six/bo/parcel.js.html +132 -0
- package/coverage/lcov-report/six/bo/parcels.js.html +96 -0
- package/coverage/lcov-report/six/business-objects.js.html +102 -0
- package/coverage/lcov-report/six/index.html +97 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +170 -0
- package/coverage/lcov-report/src/bo/base-bo-collection.js.html +114 -0
- package/coverage/lcov-report/src/bo/base-bo.js.html +1206 -0
- package/coverage/lcov-report/src/bo/index.html +110 -0
- package/coverage/lcov-report/src/bo.js.html +1248 -0
- package/coverage/lcov-report/src/business-object.js.html +1248 -0
- package/coverage/lcov-report/src/business-object.ts.html +1596 -0
- package/coverage/lcov-report/src/dao/base-dao.js.html +507 -0
- package/coverage/lcov-report/src/dao/index.html +97 -0
- package/coverage/lcov-report/src/factory.js.html +570 -0
- package/coverage/lcov-report/src/factory.ts.html +2268 -0
- package/coverage/lcov-report/src/index.html +110 -0
- package/coverage/lcov-report/src/index.js.html +219 -0
- package/coverage/lcov-report/src/index.ts.html +93 -0
- package/coverage/lcov-report/src/util/helpers.js.html +153 -0
- package/coverage/lcov-report/src/util/index.html +97 -0
- package/coverage/lcov-report/test-utils/blog/index.html +97 -0
- package/coverage/lcov-report/test-utils/blog/models/article.ts.html +264 -0
- package/coverage/lcov-report/test-utils/blog/models/article_tag.ts.html +192 -0
- package/coverage/lcov-report/test-utils/blog/models/index.html +136 -0
- package/coverage/lcov-report/test-utils/blog/models/person.ts.html +303 -0
- package/coverage/lcov-report/test-utils/blog/models/tag.ts.html +165 -0
- package/coverage/lcov-report/test-utils/blog/orm.ts.html +102 -0
- package/coverage/lcov-report/test-utils/five/bo/base.js.html +84 -0
- package/coverage/lcov-report/test-utils/five/bo/index.html +214 -0
- package/coverage/lcov-report/test-utils/five/bo/line-item.js.html +135 -0
- package/coverage/lcov-report/test-utils/five/bo/line-items.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/bo/order.js.html +132 -0
- package/coverage/lcov-report/test-utils/five/bo/orders.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/bo/parcel-event.js.html +135 -0
- package/coverage/lcov-report/test-utils/five/bo/parcel-events.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/bo/parcel-line-item.js.html +150 -0
- package/coverage/lcov-report/test-utils/five/bo/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/bo/parcel.js.html +132 -0
- package/coverage/lcov-report/test-utils/five/bo/parcels.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/business-objects/index.html +149 -0
- package/coverage/lcov-report/test-utils/five/business-objects/line-item.js.html +135 -0
- package/coverage/lcov-report/test-utils/five/business-objects/line-item.ts.html +174 -0
- package/coverage/lcov-report/test-utils/five/business-objects/line-items.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/business-objects/order.js.html +132 -0
- package/coverage/lcov-report/test-utils/five/business-objects/order.ts.html +165 -0
- package/coverage/lcov-report/test-utils/five/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel-event.js.html +135 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel-event.ts.html +192 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel-events.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel-line-item.js.html +150 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel.js.html +132 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcel.ts.html +150 -0
- package/coverage/lcov-report/test-utils/five/business-objects/parcels.js.html +99 -0
- package/coverage/lcov-report/test-utils/five/business-objects.js.html +102 -0
- package/coverage/lcov-report/test-utils/five/entities/index.html +149 -0
- package/coverage/lcov-report/test-utils/five/entities/line-item.ts.html +174 -0
- package/coverage/lcov-report/test-utils/five/entities/order.ts.html +165 -0
- package/coverage/lcov-report/test-utils/five/entities/parcel-event.ts.html +192 -0
- package/coverage/lcov-report/test-utils/five/entities/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/test-utils/five/entities/parcel.ts.html +150 -0
- package/coverage/lcov-report/test-utils/five/index.html +97 -0
- package/coverage/lcov-report/test-utils/five/models/index.html +149 -0
- package/coverage/lcov-report/test-utils/five/models/line-item.ts.html +174 -0
- package/coverage/lcov-report/test-utils/five/models/order.ts.html +156 -0
- package/coverage/lcov-report/test-utils/five/models/parcel-event.ts.html +192 -0
- package/coverage/lcov-report/test-utils/five/models/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/test-utils/five/models/parcel.ts.html +150 -0
- package/coverage/lcov-report/test-utils/five/orm.js.html +126 -0
- package/coverage/lcov-report/test-utils/five/orm.ts.html +120 -0
- package/coverage/lcov-report/test-utils/nine/bo/base.js.html +84 -0
- package/coverage/lcov-report/test-utils/nine/bo/feature-switch.js.html +132 -0
- package/coverage/lcov-report/test-utils/nine/bo/feature-switches.js.html +108 -0
- package/coverage/lcov-report/test-utils/nine/bo/index.html +110 -0
- package/coverage/lcov-report/test-utils/nine/business-objects/feature-switch.js.html +132 -0
- package/coverage/lcov-report/test-utils/nine/business-objects/feature-switch.ts.html +183 -0
- package/coverage/lcov-report/test-utils/nine/business-objects/feature-switches.js.html +108 -0
- package/coverage/lcov-report/test-utils/nine/business-objects/index.html +97 -0
- package/coverage/lcov-report/test-utils/nine/business-objects.js.html +90 -0
- package/coverage/lcov-report/test-utils/nine/entities/feature-switch.ts.html +183 -0
- package/coverage/lcov-report/test-utils/nine/entities/index.html +97 -0
- package/coverage/lcov-report/test-utils/nine/index.html +97 -0
- package/coverage/lcov-report/test-utils/nine/models/feature-switch.ts.html +183 -0
- package/coverage/lcov-report/test-utils/nine/models/index.html +97 -0
- package/coverage/lcov-report/test-utils/nine/orm.js.html +96 -0
- package/coverage/lcov-report/test-utils/nine/orm.ts.html +90 -0
- package/coverage/lcov-report/test-utils/order/index.html +97 -0
- package/coverage/lcov-report/test-utils/order/models/index.html +149 -0
- package/coverage/lcov-report/test-utils/order/models/line-item.ts.html +267 -0
- package/coverage/lcov-report/test-utils/order/models/order.ts.html +390 -0
- package/coverage/lcov-report/test-utils/order/models/product-variant.ts.html +273 -0
- package/coverage/lcov-report/test-utils/order/models/product.ts.html +228 -0
- package/coverage/lcov-report/test-utils/order/models/utm-source.ts.html +168 -0
- package/coverage/lcov-report/test-utils/order/orm.ts.html +123 -0
- package/coverage/lcov-report/test-utils/order-more/index.html +97 -0
- package/coverage/lcov-report/test-utils/order-more/models/actual-product-variant.ts.html +162 -0
- package/coverage/lcov-report/test-utils/order-more/models/color.ts.html +192 -0
- package/coverage/lcov-report/test-utils/order-more/models/customer.ts.html +156 -0
- package/coverage/lcov-report/test-utils/order-more/models/gender.ts.html +162 -0
- package/coverage/lcov-report/test-utils/order-more/models/index.html +344 -0
- package/coverage/lcov-report/test-utils/order-more/models/inventory-level.ts.html +231 -0
- package/coverage/lcov-report/test-utils/order-more/models/line-item.ts.html +267 -0
- package/coverage/lcov-report/test-utils/order-more/models/order.ts.html +441 -0
- package/coverage/lcov-report/test-utils/order-more/models/parcel-event.ts.html +192 -0
- package/coverage/lcov-report/test-utils/order-more/models/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/test-utils/order-more/models/parcel.ts.html +150 -0
- package/coverage/lcov-report/test-utils/order-more/models/physical-address.ts.html +246 -0
- package/coverage/lcov-report/test-utils/order-more/models/product-variant-image.ts.html +201 -0
- package/coverage/lcov-report/test-utils/order-more/models/product-variant.ts.html +327 -0
- package/coverage/lcov-report/test-utils/order-more/models/product.ts.html +237 -0
- package/coverage/lcov-report/test-utils/order-more/models/refund.ts.html +237 -0
- package/coverage/lcov-report/test-utils/order-more/models/shipment-actual-product-variant.ts.html +216 -0
- package/coverage/lcov-report/test-utils/order-more/models/shipment.ts.html +174 -0
- package/coverage/lcov-report/test-utils/order-more/models/size.ts.html +162 -0
- package/coverage/lcov-report/test-utils/order-more/models/utm-medium.ts.html +162 -0
- package/coverage/lcov-report/test-utils/order-more/models/utm-source.ts.html +168 -0
- package/coverage/lcov-report/test-utils/order-more/orm.ts.html +213 -0
- package/coverage/lcov-report/test-utils/six/bo/base.js.html +84 -0
- package/coverage/lcov-report/test-utils/six/bo/customer.js.html +132 -0
- package/coverage/lcov-report/test-utils/six/bo/customers.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/bo/index.html +201 -0
- package/coverage/lcov-report/test-utils/six/bo/line-item.js.html +135 -0
- package/coverage/lcov-report/test-utils/six/bo/order.js.html +135 -0
- package/coverage/lcov-report/test-utils/six/bo/orders.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/bo/parcel-line-item.js.html +150 -0
- package/coverage/lcov-report/test-utils/six/bo/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/bo/parcel.js.html +132 -0
- package/coverage/lcov-report/test-utils/six/bo/parcels.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/business-objects/customer.js.html +132 -0
- package/coverage/lcov-report/test-utils/six/business-objects/customer.ts.html +156 -0
- package/coverage/lcov-report/test-utils/six/business-objects/customers.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/business-objects/index.html +149 -0
- package/coverage/lcov-report/test-utils/six/business-objects/line-item.js.html +135 -0
- package/coverage/lcov-report/test-utils/six/business-objects/line-item.ts.html +174 -0
- package/coverage/lcov-report/test-utils/six/business-objects/order.js.html +135 -0
- package/coverage/lcov-report/test-utils/six/business-objects/order.ts.html +174 -0
- package/coverage/lcov-report/test-utils/six/business-objects/orders.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/business-objects/parcel-line-item.js.html +150 -0
- package/coverage/lcov-report/test-utils/six/business-objects/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/test-utils/six/business-objects/parcel-line-items.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/business-objects/parcel.js.html +132 -0
- package/coverage/lcov-report/test-utils/six/business-objects/parcel.ts.html +150 -0
- package/coverage/lcov-report/test-utils/six/business-objects/parcels.js.html +99 -0
- package/coverage/lcov-report/test-utils/six/business-objects.js.html +102 -0
- package/coverage/lcov-report/test-utils/six/entities/customer.ts.html +156 -0
- package/coverage/lcov-report/test-utils/six/entities/index.html +149 -0
- package/coverage/lcov-report/test-utils/six/entities/line-item.ts.html +174 -0
- package/coverage/lcov-report/test-utils/six/entities/order.ts.html +174 -0
- package/coverage/lcov-report/test-utils/six/entities/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/test-utils/six/entities/parcel.ts.html +150 -0
- package/coverage/lcov-report/test-utils/six/index.html +97 -0
- package/coverage/lcov-report/test-utils/six/models/customer.ts.html +156 -0
- package/coverage/lcov-report/test-utils/six/models/index.html +149 -0
- package/coverage/lcov-report/test-utils/six/models/line-item.ts.html +174 -0
- package/coverage/lcov-report/test-utils/six/models/order.ts.html +174 -0
- package/coverage/lcov-report/test-utils/six/models/parcel-line-item.ts.html +192 -0
- package/coverage/lcov-report/test-utils/six/models/parcel.ts.html +150 -0
- package/coverage/lcov-report/test-utils/six/orm.js.html +126 -0
- package/coverage/lcov-report/test-utils/six/orm.ts.html +120 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/audience.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/audiences.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/base.js.html +84 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/brand.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/brands.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/categories.js.html +108 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/category.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/index.html +292 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/member.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/members.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/passion.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/passions.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/product.js.html +135 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/products.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/recommendation-audience.js.html +150 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/recommendation-audiences.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/recommendation.js.html +168 -0
- package/coverage/lcov-report/test-utils/thirteen/bo/recommendations.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/audience.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/audience.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/audiences.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/brand.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/brand.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/brands.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/categories.js.html +108 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/category.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/category.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/index.html +188 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/member.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/member.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/members.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/passion.js.html +132 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/passion.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/passions.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/product.js.html +135 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/product.ts.html +174 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/products.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/recommendation-audience.js.html +150 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/recommendation-audience.ts.html +192 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/recommendation-audiences.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/recommendation.js.html +168 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/recommendation.ts.html +249 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects/recommendations.js.html +99 -0
- package/coverage/lcov-report/test-utils/thirteen/business-objects.js.html +111 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/audience.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/brand.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/category.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/index.html +188 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/member.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/passion.ts.html +156 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/product.ts.html +174 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/recommendation-audience.ts.html +192 -0
- package/coverage/lcov-report/test-utils/thirteen/entities/recommendation.ts.html +249 -0
- package/coverage/lcov-report/test-utils/thirteen/index.html +97 -0
- package/coverage/lcov-report/test-utils/thirteen/models/audience.ts.html +150 -0
- package/coverage/lcov-report/test-utils/thirteen/models/brand.ts.html +150 -0
- package/coverage/lcov-report/test-utils/thirteen/models/category.ts.html +150 -0
- package/coverage/lcov-report/test-utils/thirteen/models/index.html +188 -0
- package/coverage/lcov-report/test-utils/thirteen/models/member.ts.html +150 -0
- package/coverage/lcov-report/test-utils/thirteen/models/passion.ts.html +150 -0
- package/coverage/lcov-report/test-utils/thirteen/models/product.ts.html +174 -0
- package/coverage/lcov-report/test-utils/thirteen/models/recommendation-audience.ts.html +198 -0
- package/coverage/lcov-report/test-utils/thirteen/models/recommendation.ts.html +249 -0
- package/coverage/lcov-report/test-utils/thirteen/orm.js.html +144 -0
- package/coverage/lcov-report/test-utils/thirteen/orm.ts.html +138 -0
- package/coverage/lcov-report/test-utils/three/index.html +97 -0
- package/coverage/lcov-report/test-utils/three/results.js.html +1335 -0
- package/coverage/lcov-report/test-utils/twelve/bo/base.js.html +84 -0
- package/coverage/lcov-report/test-utils/twelve/bo/index.html +136 -0
- package/coverage/lcov-report/test-utils/twelve/bo/member.js.html +126 -0
- package/coverage/lcov-report/test-utils/twelve/bo/members.js.html +99 -0
- package/coverage/lcov-report/test-utils/twelve/bo/prompt.js.html +138 -0
- package/coverage/lcov-report/test-utils/twelve/bo/prompts.js.html +99 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects/index.html +110 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects/member.js.html +126 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects/member.ts.html +156 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects/members.js.html +99 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects/prompt.js.html +138 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects/prompt.ts.html +189 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects/prompts.js.html +99 -0
- package/coverage/lcov-report/test-utils/twelve/business-objects.js.html +93 -0
- package/coverage/lcov-report/test-utils/twelve/entities/index.html +110 -0
- package/coverage/lcov-report/test-utils/twelve/entities/member.ts.html +156 -0
- package/coverage/lcov-report/test-utils/twelve/entities/prompt.ts.html +189 -0
- package/coverage/lcov-report/test-utils/twelve/index.html +97 -0
- package/coverage/lcov-report/test-utils/twelve/models/index.html +110 -0
- package/coverage/lcov-report/test-utils/twelve/models/member.ts.html +150 -0
- package/coverage/lcov-report/test-utils/twelve/models/prompt.ts.html +189 -0
- package/coverage/lcov-report/test-utils/twelve/orm.js.html +99 -0
- package/coverage/lcov-report/test-utils/twelve/orm.ts.html +93 -0
- package/coverage/lcov-report/test-utils/two/index.html +97 -0
- package/coverage/lcov-report/test-utils/two/results.js.html +1035 -0
- package/coverage/lcov-report/util/helpers.js.html +153 -0
- package/coverage/lcov-report/util/index.html +97 -0
- package/coverage/lcov.info +4087 -0
- package/dist/example/app.d.ts +1 -0
- package/dist/example/app.js +14 -0
- package/dist/example/data-access/person.d.ts +2 -0
- package/dist/example/data-access/person.js +21 -0
- package/dist/example/factories/db.d.ts +2 -0
- package/dist/example/factories/db.js +16 -0
- package/dist/example/factories/orm.d.ts +47 -0
- package/dist/example/factories/orm.js +12 -0
- package/dist/example/models/employer.d.ts +23 -0
- package/dist/example/models/employer.js +25 -0
- package/dist/example/models/job.d.ts +35 -0
- package/dist/example/models/job.js +38 -0
- package/dist/example/models/person.d.ts +25 -0
- package/dist/example/models/person.js +31 -0
- package/dist/src/factory.d.ts +99 -0
- package/dist/src/factory.js +512 -0
- package/dist/src/factory.spec.d.ts +1 -0
- package/dist/src/factory.spec.js +566 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +5 -0
- package/dist/test-utils/blog/models/article.d.ts +30 -0
- package/dist/test-utils/blog/models/article.js +49 -0
- package/dist/test-utils/blog/models/article.ts +65 -0
- package/dist/test-utils/blog/models/article_tag.d.ts +23 -0
- package/dist/test-utils/blog/models/article_tag.js +33 -0
- package/dist/test-utils/blog/models/article_tag.ts +41 -0
- package/dist/test-utils/blog/models/person.d.ts +43 -0
- package/dist/test-utils/blog/models/person.js +48 -0
- package/dist/test-utils/blog/models/person.ts +78 -0
- package/dist/test-utils/blog/models/tag.d.ts +19 -0
- package/dist/test-utils/blog/models/tag.js +25 -0
- package/dist/test-utils/blog/models/tag.ts +32 -0
- package/dist/test-utils/blog/orm.d.ts +2 -0
- package/dist/test-utils/blog/orm.js +12 -0
- package/dist/test-utils/blog/orm.ts +11 -0
- package/dist/test-utils/eight/results.json +128 -0
- package/dist/test-utils/eleven/results.json +818 -0
- package/dist/test-utils/five/models/line-item.d.ts +20 -0
- package/dist/test-utils/five/models/line-item.js +29 -0
- package/dist/test-utils/five/models/line-item.ts +35 -0
- package/dist/test-utils/five/models/order.d.ts +18 -0
- package/dist/test-utils/five/models/order.js +24 -0
- package/dist/test-utils/five/models/order.ts +29 -0
- package/dist/test-utils/five/models/parcel-event.d.ts +22 -0
- package/dist/test-utils/five/models/parcel-event.js +33 -0
- package/dist/test-utils/five/models/parcel-event.ts +41 -0
- package/dist/test-utils/five/models/parcel-line-item.d.ts +23 -0
- package/dist/test-utils/five/models/parcel-line-item.js +33 -0
- package/dist/test-utils/five/models/parcel-line-item.ts +41 -0
- package/dist/test-utils/five/models/parcel.d.ts +17 -0
- package/dist/test-utils/five/models/parcel.js +23 -0
- package/dist/test-utils/five/models/parcel.ts +27 -0
- package/dist/test-utils/five/orm.d.ts +47 -0
- package/dist/test-utils/five/orm.js +19 -0
- package/dist/test-utils/five/orm.ts +17 -0
- package/dist/test-utils/five/results.json +58 -0
- package/dist/test-utils/four/results.json +772 -0
- package/dist/test-utils/nine/models/feature-switch.d.ts +25 -0
- package/dist/test-utils/nine/models/feature-switch.js +26 -0
- package/dist/test-utils/nine/models/feature-switch.ts +38 -0
- package/dist/test-utils/nine/orm.d.ts +47 -0
- package/dist/test-utils/nine/orm.js +9 -0
- package/dist/test-utils/nine/orm.ts +7 -0
- package/dist/test-utils/nine/results.json +12 -0
- package/dist/test-utils/one/results.json +386 -0
- package/dist/test-utils/order/models/line-item.d.ts +31 -0
- package/dist/test-utils/order/models/line-item.js +50 -0
- package/dist/test-utils/order/models/line-item.ts +66 -0
- package/dist/test-utils/order/models/order.d.ts +42 -0
- package/dist/test-utils/order/models/order.js +79 -0
- package/dist/test-utils/order/models/order.ts +107 -0
- package/dist/test-utils/order/models/product-variant.d.ts +31 -0
- package/dist/test-utils/order/models/product-variant.js +51 -0
- package/dist/test-utils/order/models/product-variant.ts +68 -0
- package/dist/test-utils/order/models/product.d.ts +25 -0
- package/dist/test-utils/order/models/product.js +41 -0
- package/dist/test-utils/order/models/product.ts +53 -0
- package/dist/test-utils/order/models/utm-source.d.ts +20 -0
- package/dist/test-utils/order/models/utm-source.js +26 -0
- package/dist/test-utils/order/models/utm-source.ts +33 -0
- package/dist/test-utils/order/orm.d.ts +47 -0
- package/dist/test-utils/order/orm.js +19 -0
- package/dist/test-utils/order/orm.ts +18 -0
- package/dist/test-utils/order-more/models/actual-product-variant.d.ts +18 -0
- package/dist/test-utils/order-more/models/actual-product-variant.js +24 -0
- package/dist/test-utils/order-more/models/actual-product-variant.ts +31 -0
- package/dist/test-utils/order-more/models/color.d.ts +21 -0
- package/dist/test-utils/order-more/models/color.js +33 -0
- package/dist/test-utils/order-more/models/color.ts +41 -0
- package/dist/test-utils/order-more/models/customer.d.ts +18 -0
- package/dist/test-utils/order-more/models/customer.js +24 -0
- package/dist/test-utils/order-more/models/customer.ts +29 -0
- package/dist/test-utils/order-more/models/gender.d.ts +19 -0
- package/dist/test-utils/order-more/models/gender.js +25 -0
- package/dist/test-utils/order-more/models/gender.ts +31 -0
- package/dist/test-utils/order-more/models/inventory-level.d.ts +27 -0
- package/dist/test-utils/order-more/models/inventory-level.js +41 -0
- package/dist/test-utils/order-more/models/inventory-level.ts +54 -0
- package/dist/test-utils/order-more/models/line-item.d.ts +31 -0
- package/dist/test-utils/order-more/models/line-item.js +50 -0
- package/dist/test-utils/order-more/models/line-item.ts +66 -0
- package/dist/test-utils/order-more/models/order.d.ts +50 -0
- package/dist/test-utils/order-more/models/order.js +90 -0
- package/dist/test-utils/order-more/models/order.ts +124 -0
- package/dist/test-utils/order-more/models/parcel-event.d.ts +22 -0
- package/dist/test-utils/order-more/models/parcel-event.js +33 -0
- package/dist/test-utils/order-more/models/parcel-event.ts +41 -0
- package/dist/test-utils/order-more/models/parcel-line-item.d.ts +23 -0
- package/dist/test-utils/order-more/models/parcel-line-item.js +33 -0
- package/dist/test-utils/order-more/models/parcel-line-item.ts +41 -0
- package/dist/test-utils/order-more/models/parcel.d.ts +17 -0
- package/dist/test-utils/order-more/models/parcel.js +23 -0
- package/dist/test-utils/order-more/models/parcel.ts +27 -0
- package/dist/test-utils/order-more/models/physical-address.d.ts +27 -0
- package/dist/test-utils/order-more/models/physical-address.js +45 -0
- package/dist/test-utils/order-more/models/physical-address.ts +59 -0
- package/dist/test-utils/order-more/models/product-variant-image.d.ts +23 -0
- package/dist/test-utils/order-more/models/product-variant-image.js +35 -0
- package/dist/test-utils/order-more/models/product-variant-image.ts +44 -0
- package/dist/test-utils/order-more/models/product-variant.d.ts +41 -0
- package/dist/test-utils/order-more/models/product-variant.js +63 -0
- package/dist/test-utils/order-more/models/product-variant.ts +86 -0
- package/dist/test-utils/order-more/models/product.d.ts +26 -0
- package/dist/test-utils/order-more/models/product.js +43 -0
- package/dist/test-utils/order-more/models/product.ts +56 -0
- package/dist/test-utils/order-more/models/refund.d.ts +27 -0
- package/dist/test-utils/order-more/models/refund.js +43 -0
- package/dist/test-utils/order-more/models/refund.ts +56 -0
- package/dist/test-utils/order-more/models/shipment-actual-product-variant.d.ts +25 -0
- package/dist/test-utils/order-more/models/shipment-actual-product-variant.js +37 -0
- package/dist/test-utils/order-more/models/shipment-actual-product-variant.ts +49 -0
- package/dist/test-utils/order-more/models/shipment.d.ts +19 -0
- package/dist/test-utils/order-more/models/shipment.js +29 -0
- package/dist/test-utils/order-more/models/shipment.ts +35 -0
- package/dist/test-utils/order-more/models/size.d.ts +19 -0
- package/dist/test-utils/order-more/models/size.js +25 -0
- package/dist/test-utils/order-more/models/size.ts +31 -0
- package/dist/test-utils/order-more/models/utm-medium.d.ts +19 -0
- package/dist/test-utils/order-more/models/utm-medium.js +25 -0
- package/dist/test-utils/order-more/models/utm-medium.ts +31 -0
- package/dist/test-utils/order-more/models/utm-source.d.ts +20 -0
- package/dist/test-utils/order-more/models/utm-source.js +26 -0
- package/dist/test-utils/order-more/models/utm-source.ts +33 -0
- package/dist/test-utils/order-more/orm.d.ts +47 -0
- package/dist/test-utils/order-more/orm.js +49 -0
- package/dist/test-utils/order-more/orm.ts +48 -0
- package/dist/test-utils/seven/results.json +32 -0
- package/dist/test-utils/six/models/customer.d.ts +18 -0
- package/dist/test-utils/six/models/customer.js +24 -0
- package/dist/test-utils/six/models/customer.ts +29 -0
- package/dist/test-utils/six/models/line-item.d.ts +20 -0
- package/dist/test-utils/six/models/line-item.js +29 -0
- package/dist/test-utils/six/models/line-item.ts +35 -0
- package/dist/test-utils/six/models/order.d.ts +20 -0
- package/dist/test-utils/six/models/order.js +29 -0
- package/dist/test-utils/six/models/order.ts +35 -0
- package/dist/test-utils/six/models/parcel-line-item.d.ts +23 -0
- package/dist/test-utils/six/models/parcel-line-item.js +33 -0
- package/dist/test-utils/six/models/parcel-line-item.ts +41 -0
- package/dist/test-utils/six/models/parcel.d.ts +17 -0
- package/dist/test-utils/six/models/parcel.js +23 -0
- package/dist/test-utils/six/models/parcel.ts +27 -0
- package/dist/test-utils/six/orm.d.ts +47 -0
- package/dist/test-utils/six/orm.js +19 -0
- package/dist/test-utils/six/orm.ts +17 -0
- package/dist/test-utils/six/results.json +26 -0
- package/dist/test-utils/ten/results.json +899 -0
- package/dist/test-utils/thirteen/models/audience.d.ts +17 -0
- package/dist/test-utils/thirteen/models/audience.js +23 -0
- package/dist/test-utils/thirteen/models/audience.ts +27 -0
- package/dist/test-utils/thirteen/models/brand.d.ts +17 -0
- package/dist/test-utils/thirteen/models/brand.js +23 -0
- package/dist/test-utils/thirteen/models/brand.ts +27 -0
- package/dist/test-utils/thirteen/models/category.d.ts +17 -0
- package/dist/test-utils/thirteen/models/category.js +23 -0
- package/dist/test-utils/thirteen/models/category.ts +27 -0
- package/dist/test-utils/thirteen/models/member.d.ts +17 -0
- package/dist/test-utils/thirteen/models/member.js +23 -0
- package/dist/test-utils/thirteen/models/member.ts +27 -0
- package/dist/test-utils/thirteen/models/passion.d.ts +17 -0
- package/dist/test-utils/thirteen/models/passion.js +23 -0
- package/dist/test-utils/thirteen/models/passion.ts +27 -0
- package/dist/test-utils/thirteen/models/product.d.ts +20 -0
- package/dist/test-utils/thirteen/models/product.js +29 -0
- package/dist/test-utils/thirteen/models/product.ts +35 -0
- package/dist/test-utils/thirteen/models/recommendation-audience.d.ts +23 -0
- package/dist/test-utils/thirteen/models/recommendation-audience.js +33 -0
- package/dist/test-utils/thirteen/models/recommendation-audience.ts +43 -0
- package/dist/test-utils/thirteen/models/recommendation.d.ts +32 -0
- package/dist/test-utils/thirteen/models/recommendation.js +45 -0
- package/dist/test-utils/thirteen/models/recommendation.ts +60 -0
- package/dist/test-utils/thirteen/orm.d.ts +47 -0
- package/dist/test-utils/thirteen/orm.js +25 -0
- package/dist/test-utils/thirteen/orm.ts +23 -0
- package/dist/test-utils/thirteen/results.json +74 -0
- package/dist/test-utils/three/results.js +422 -0
- package/dist/test-utils/twelve/models/member.d.ts +17 -0
- package/dist/test-utils/twelve/models/member.js +23 -0
- package/dist/test-utils/twelve/models/member.ts +27 -0
- package/dist/test-utils/twelve/models/prompt.d.ts +22 -0
- package/dist/test-utils/twelve/models/prompt.js +32 -0
- package/dist/test-utils/twelve/models/prompt.ts +40 -0
- package/dist/test-utils/twelve/orm.d.ts +47 -0
- package/dist/test-utils/twelve/orm.js +10 -0
- package/dist/test-utils/twelve/orm.ts +8 -0
- package/dist/test-utils/twelve/results.json +8 -0
- package/dist/test-utils/two/results.js +322 -0
- package/example/README.md +3 -0
- package/example/app.ts +12 -0
- package/example/data-access/person.ts +16 -0
- package/example/factories/db.ts +11 -0
- package/example/factories/orm.ts +10 -0
- package/example/models/employer.ts +36 -0
- package/example/models/job.ts +59 -0
- package/example/models/person.ts +42 -0
- package/package.json +21 -8
- package/src/factory.spec.ts +1048 -0
- package/src/factory.ts +733 -0
- package/src/index.ts +8 -0
- package/test-utils/blog/models/article.ts +65 -0
- package/test-utils/blog/models/article_tag.ts +41 -0
- package/test-utils/blog/models/person.ts +78 -0
- package/test-utils/blog/models/tag.ts +32 -0
- package/test-utils/blog/orm.ts +11 -0
- package/test-utils/five/models/line-item.ts +35 -0
- package/test-utils/five/models/order.ts +29 -0
- package/test-utils/five/models/parcel-event.ts +41 -0
- package/test-utils/five/models/parcel-line-item.ts +41 -0
- package/test-utils/five/models/parcel.ts +27 -0
- package/test-utils/five/orm.ts +17 -0
- package/test-utils/nine/models/feature-switch.ts +38 -0
- package/test-utils/nine/orm.ts +7 -0
- package/test-utils/order/models/line-item.ts +66 -0
- package/test-utils/order/models/order.ts +107 -0
- package/test-utils/order/models/product-variant.ts +68 -0
- package/test-utils/order/models/product.ts +53 -0
- package/test-utils/order/models/utm-source.ts +33 -0
- package/test-utils/order/orm.ts +18 -0
- package/test-utils/order-more/models/actual-product-variant.ts +31 -0
- package/test-utils/order-more/models/color.ts +41 -0
- package/test-utils/order-more/models/customer.ts +29 -0
- package/test-utils/order-more/models/gender.ts +31 -0
- package/test-utils/order-more/models/inventory-level.ts +54 -0
- package/test-utils/order-more/models/line-item.ts +66 -0
- package/test-utils/order-more/models/order.ts +124 -0
- package/test-utils/order-more/models/parcel-event.ts +41 -0
- package/test-utils/order-more/models/parcel-line-item.ts +41 -0
- package/test-utils/order-more/models/parcel.ts +27 -0
- package/test-utils/order-more/models/physical-address.ts +59 -0
- package/test-utils/order-more/models/product-variant-image.ts +44 -0
- package/test-utils/order-more/models/product-variant.ts +86 -0
- package/test-utils/order-more/models/product.ts +56 -0
- package/test-utils/order-more/models/refund.ts +56 -0
- package/test-utils/order-more/models/shipment-actual-product-variant.ts +49 -0
- package/test-utils/order-more/models/shipment.ts +35 -0
- package/test-utils/order-more/models/size.ts +31 -0
- package/test-utils/order-more/models/utm-medium.ts +31 -0
- package/test-utils/order-more/models/utm-source.ts +33 -0
- package/test-utils/order-more/orm.ts +48 -0
- package/test-utils/six/models/customer.ts +29 -0
- package/test-utils/six/models/line-item.ts +35 -0
- package/test-utils/six/models/order.ts +35 -0
- package/test-utils/six/models/parcel-line-item.ts +41 -0
- package/test-utils/six/models/parcel.ts +27 -0
- package/test-utils/six/orm.ts +17 -0
- package/test-utils/thirteen/models/audience.ts +27 -0
- package/test-utils/thirteen/models/brand.ts +27 -0
- package/test-utils/thirteen/models/category.ts +27 -0
- package/test-utils/thirteen/models/member.ts +27 -0
- package/test-utils/thirteen/models/passion.ts +27 -0
- package/test-utils/thirteen/models/product.ts +35 -0
- package/test-utils/thirteen/models/recommendation-audience.ts +43 -0
- package/test-utils/thirteen/models/recommendation.ts +60 -0
- package/test-utils/thirteen/orm.ts +23 -0
- package/test-utils/thirteen/results.json +74 -0
- package/test-utils/twelve/models/member.ts +27 -0
- package/test-utils/twelve/models/prompt.ts +40 -0
- package/test-utils/twelve/orm.ts +8 -0
- package/tsconfig.json +15 -0
- package/examples/basic/README.md +0 -3
- package/examples/basic/bo/base.js +0 -5
- package/examples/basic/bo/person.js +0 -13
- package/examples/basic/business-objects.js +0 -9
- package/examples/basic/dao/base.js +0 -9
- package/examples/basic/dao/person.js +0 -21
- package/examples/basic/db.js +0 -25
- package/examples/blog/bo/article.js +0 -32
- package/examples/blog/bo/article_tag.js +0 -24
- package/examples/blog/bo/article_tags.js +0 -9
- package/examples/blog/bo/articles.js +0 -9
- package/examples/blog/bo/base.js +0 -5
- package/examples/blog/bo/person.js +0 -26
- package/examples/blog/bo/tag.js +0 -13
- package/examples/blog/business-objects.js +0 -10
- package/examples/order/bo/base.js +0 -5
- package/examples/order/bo/line-item.js +0 -33
- package/examples/order/bo/line-items.js +0 -9
- package/examples/order/bo/order.js +0 -44
- package/examples/order/bo/orders.js +0 -9
- package/examples/order/bo/product-variant.js +0 -33
- package/examples/order/bo/product-variants.js +0 -9
- package/examples/order/bo/product.js +0 -28
- package/examples/order/bo/products.js +0 -9
- package/examples/order/bo/utm-source.js +0 -13
- package/examples/order/business-objects.js +0 -11
- package/examples/order-more/bo/actual-product-variant.js +0 -25
- package/examples/order-more/bo/actual-product-variants.js +0 -9
- package/examples/order-more/bo/base.js +0 -5
- package/examples/order-more/bo/color.js +0 -18
- package/examples/order-more/bo/colors.js +0 -9
- package/examples/order-more/bo/customer.js +0 -18
- package/examples/order-more/bo/customers.js +0 -9
- package/examples/order-more/bo/gender.js +0 -18
- package/examples/order-more/bo/genders.js +0 -9
- package/examples/order-more/bo/inventory-level.js +0 -28
- package/examples/order-more/bo/inventory-levels.js +0 -9
- package/examples/order-more/bo/line-item.js +0 -33
- package/examples/order-more/bo/line-items.js +0 -9
- package/examples/order-more/bo/order.js +0 -49
- package/examples/order-more/bo/orders.js +0 -9
- package/examples/order-more/bo/parcel-event.js +0 -19
- package/examples/order-more/bo/parcel-events.js +0 -9
- package/examples/order-more/bo/parcel-line-item.js +0 -24
- package/examples/order-more/bo/parcel-line-items.js +0 -9
- package/examples/order-more/bo/parcel.js +0 -18
- package/examples/order-more/bo/parcels.js +0 -9
- package/examples/order-more/bo/physical-address.js +0 -30
- package/examples/order-more/bo/physical-addresses.js +0 -12
- package/examples/order-more/bo/product-variant-image.js +0 -25
- package/examples/order-more/bo/product-variant-images.js +0 -9
- package/examples/order-more/bo/product-variant.js +0 -39
- package/examples/order-more/bo/product-variants.js +0 -9
- package/examples/order-more/bo/product.js +0 -29
- package/examples/order-more/bo/products.js +0 -9
- package/examples/order-more/bo/refund.js +0 -28
- package/examples/order-more/bo/refunds.js +0 -9
- package/examples/order-more/bo/shipment-actual-product-variant.js +0 -26
- package/examples/order-more/bo/shipment-actual-product-variants.js +0 -9
- package/examples/order-more/bo/shipment.js +0 -18
- package/examples/order-more/bo/shipments.js +0 -9
- package/examples/order-more/bo/size.js +0 -18
- package/examples/order-more/bo/sizes.js +0 -9
- package/examples/order-more/bo/utm-medium.js +0 -13
- package/examples/order-more/bo/utm-source.js +0 -13
- package/examples/order-more/business-objects.js +0 -26
- package/src/bo/base-bo-collection.js +0 -15
- package/src/bo/base-bo.js +0 -379
- package/src/bo/base-bo.spec.js +0 -547
- package/src/dao/base-dao.js +0 -146
- package/src/dao/base-dao.spec.js +0 -6
- package/src/index.js +0 -7
- package/src/util/helpers.js +0 -28
- package/src/util/helpers.spec.js +0 -6
- package/test-utils/five/bo/base.js +0 -5
- package/test-utils/five/bo/line-item.js +0 -19
- package/test-utils/five/bo/line-items.js +0 -9
- package/test-utils/five/bo/order.js +0 -18
- package/test-utils/five/bo/orders.js +0 -9
- package/test-utils/five/bo/parcel-event.js +0 -19
- package/test-utils/five/bo/parcel-events.js +0 -9
- package/test-utils/five/bo/parcel-line-item.js +0 -24
- package/test-utils/five/bo/parcel-line-items.js +0 -9
- package/test-utils/five/bo/parcel.js +0 -18
- package/test-utils/five/bo/parcels.js +0 -9
- package/test-utils/five/business-objects.js +0 -11
- package/test-utils/nine/bo/base.js +0 -5
- package/test-utils/nine/bo/feature-switch.js +0 -18
- package/test-utils/nine/bo/feature-switches.js +0 -12
- package/test-utils/nine/business-objects.js +0 -7
- package/test-utils/six/bo/base.js +0 -5
- package/test-utils/six/bo/customer.js +0 -18
- package/test-utils/six/bo/customers.js +0 -9
- package/test-utils/six/bo/line-item.js +0 -19
- package/test-utils/six/bo/line-items.js +0 -9
- package/test-utils/six/bo/order.js +0 -19
- package/test-utils/six/bo/orders.js +0 -9
- package/test-utils/six/bo/parcel-line-item.js +0 -24
- package/test-utils/six/bo/parcel-line-items.js +0 -9
- package/test-utils/six/bo/parcel.js +0 -18
- package/test-utils/six/bo/parcels.js +0 -9
- package/test-utils/six/business-objects.js +0 -11
- package/test-utils/twelve/bo/base.js +0 -5
- package/test-utils/twelve/bo/member.js +0 -16
- package/test-utils/twelve/bo/members.js +0 -9
- package/test-utils/twelve/bo/prompt.js +0 -20
- package/test-utils/twelve/bo/prompts.js +0 -9
- package/test-utils/twelve/business-objects.js +0 -8
|
@@ -0,0 +1,2437 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1651674263497" clover="3.2.0">
|
|
3
|
+
<project timestamp="1651674263497" name="All files">
|
|
4
|
+
<metrics statements="1945" coveredstatements="1693" conditionals="220" coveredconditionals="127" methods="403" coveredmethods="253" elements="2568" coveredelements="2073" complexity="0" loc="1945" ncloc="1945" packages="38" files="124" classes="124"/>
|
|
5
|
+
<package name="dist.src">
|
|
6
|
+
<metrics statements="265" coveredstatements="166" conditionals="112" coveredconditionals="65" methods="94" coveredmethods="44"/>
|
|
7
|
+
<file name="factory.js" path="/Users/craigmartin/projects/pure-orm/dist/src/factory.js">
|
|
8
|
+
<metrics statements="261" coveredstatements="162" conditionals="112" coveredconditionals="65" methods="93" coveredmethods="43"/>
|
|
9
|
+
<line num="2" count="1" type="stmt"/>
|
|
10
|
+
<line num="3" count="1" type="stmt"/>
|
|
11
|
+
<line num="4" count="1" type="stmt"/>
|
|
12
|
+
<line num="5" count="1" type="stmt"/>
|
|
13
|
+
<line num="6" count="8" type="stmt"/>
|
|
14
|
+
<line num="7" count="50" type="stmt"/>
|
|
15
|
+
<line num="8" count="50" type="cond" truecount="2" falsecount="0"/>
|
|
16
|
+
<line num="9" count="50" type="cond" truecount="2" falsecount="0"/>
|
|
17
|
+
<line num="10" count="50" type="stmt"/>
|
|
18
|
+
<line num="11" count="271" type="cond" truecount="2" falsecount="0"/>
|
|
19
|
+
<line num="12" count="226" type="stmt"/>
|
|
20
|
+
<line num="18" count="45" type="cond" truecount="5" falsecount="1"/>
|
|
21
|
+
<line num="20" count="271" type="stmt"/>
|
|
22
|
+
<line num="21" count="271" type="stmt"/>
|
|
23
|
+
<line num="22" count="271" type="stmt"/>
|
|
24
|
+
<line num="23" count="50" type="stmt"/>
|
|
25
|
+
<line num="24" count="50" type="stmt"/>
|
|
26
|
+
<line num="25" count="271" type="stmt"/>
|
|
27
|
+
<line num="26" count="50" type="stmt"/>
|
|
28
|
+
<line num="27" count="50" type="cond" truecount="1" falsecount="1"/>
|
|
29
|
+
<line num="29" count="50" type="stmt"/>
|
|
30
|
+
<line num="30" count="2379" type="stmt"/>
|
|
31
|
+
<line num="31" count="2379" type="stmt"/>
|
|
32
|
+
<line num="34" count="50" type="stmt"/>
|
|
33
|
+
<line num="35" count="271" type="stmt"/>
|
|
34
|
+
<line num="36" count="45" type="stmt"/>
|
|
35
|
+
<line num="39" count="50" type="stmt"/>
|
|
36
|
+
<line num="40" count="271" type="stmt"/>
|
|
37
|
+
<line num="42" count="50" type="stmt"/>
|
|
38
|
+
<line num="58" count="8" type="stmt"/>
|
|
39
|
+
<line num="59" count="10197" type="stmt"/>
|
|
40
|
+
<line num="60" count="1104" type="cond" truecount="1" falsecount="1"/>
|
|
41
|
+
<line num="61" count="0" type="stmt"/>
|
|
42
|
+
<line num="63" count="1104" type="stmt"/>
|
|
43
|
+
<line num="65" count="8" type="stmt"/>
|
|
44
|
+
<line num="66" count="404341" type="stmt"/>
|
|
45
|
+
<line num="67" count="38207" type="cond" truecount="1" falsecount="1"/>
|
|
46
|
+
<line num="68" count="0" type="stmt"/>
|
|
47
|
+
<line num="70" count="38207" type="stmt"/>
|
|
48
|
+
<line num="72" count="8" type="stmt"/>
|
|
49
|
+
<line num="73" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
50
|
+
<line num="74" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
51
|
+
<line num="75" count="0" type="stmt"/>
|
|
52
|
+
<line num="78" count="0" type="stmt"/>
|
|
53
|
+
<line num="89" count="8" type="stmt"/>
|
|
54
|
+
<line num="90" count="111" type="stmt"/>
|
|
55
|
+
<line num="91" count="26" type="stmt"/>
|
|
56
|
+
<line num="92" count="1104" type="stmt"/>
|
|
57
|
+
<line num="93" count="26" type="stmt"/>
|
|
58
|
+
<line num="94" count="26" type="stmt"/>
|
|
59
|
+
<line num="96" count="26" type="stmt"/>
|
|
60
|
+
<line num="97" count="111" type="stmt"/>
|
|
61
|
+
<line num="98" count="18827" type="cond" truecount="2" falsecount="0"/>
|
|
62
|
+
<line num="101" count="993" type="cond" truecount="2" falsecount="0"/>
|
|
63
|
+
<line num="102" count="993" type="stmt"/>
|
|
64
|
+
<line num="103" count="993" type="stmt"/>
|
|
65
|
+
<line num="104" count="27484" type="stmt"/>
|
|
66
|
+
<line num="105" count="26688" type="cond" truecount="2" falsecount="0"/>
|
|
67
|
+
<line num="106" count="26688" type="stmt"/>
|
|
68
|
+
<line num="107" count="27484" type="cond" truecount="2" falsecount="0"/>
|
|
69
|
+
<line num="108" count="26812" type="stmt"/>
|
|
70
|
+
<line num="110" count="672" type="stmt"/>
|
|
71
|
+
<line num="111" count="673" type="stmt"/>
|
|
72
|
+
<line num="112" count="673" type="cond" truecount="2" falsecount="0"/>
|
|
73
|
+
<line num="113" count="646" type="stmt"/>
|
|
74
|
+
<line num="116" count="26" type="stmt"/>
|
|
75
|
+
<line num="120" count="993" type="cond" truecount="2" falsecount="0"/>
|
|
76
|
+
<line num="121" count="11737" type="cond" truecount="2" falsecount="0"/>
|
|
77
|
+
<line num="122" count="9876" type="stmt"/>
|
|
78
|
+
<line num="124" count="48580" type="stmt"/>
|
|
79
|
+
<line num="125" count="1861" type="cond" truecount="2" falsecount="0"/>
|
|
80
|
+
<line num="126" count="963" type="stmt"/>
|
|
81
|
+
<line num="128" count="898" type="stmt"/>
|
|
82
|
+
<line num="130" count="993" type="stmt"/>
|
|
83
|
+
<line num="134" count="993" type="stmt"/>
|
|
84
|
+
<line num="135" count="5858" type="stmt"/>
|
|
85
|
+
<line num="136" count="5858" type="cond" truecount="2" falsecount="0"/>
|
|
86
|
+
<line num="137" count="5526" type="stmt"/>
|
|
87
|
+
<line num="139" count="332" type="stmt"/>
|
|
88
|
+
<line num="140" count="332" type="stmt"/>
|
|
89
|
+
<line num="142" count="993" type="cond" truecount="2" falsecount="0"/>
|
|
90
|
+
<line num="143" count="538" type="cond" truecount="4" falsecount="0"/>
|
|
91
|
+
<line num="144" count="75" type="stmt"/>
|
|
92
|
+
<line num="145" count="75" type="stmt"/>
|
|
93
|
+
<line num="152" count="463" type="cond" truecount="1" falsecount="1"/>
|
|
94
|
+
<line num="153" count="463" type="stmt"/>
|
|
95
|
+
<line num="155" count="463" type="cond" truecount="4" falsecount="0"/>
|
|
96
|
+
<line num="156" count="61" type="stmt"/>
|
|
97
|
+
<line num="157" count="61" type="stmt"/>
|
|
98
|
+
<line num="161" count="857" type="cond" truecount="2" falsecount="0"/>
|
|
99
|
+
<line num="162" count="585" type="stmt"/>
|
|
100
|
+
<line num="164" count="272" type="cond" truecount="2" falsecount="0"/>
|
|
101
|
+
<line num="165" count="151" type="stmt"/>
|
|
102
|
+
<line num="166" count="151" type="cond" truecount="2" falsecount="0"/>
|
|
103
|
+
<line num="167" count="85" type="stmt"/>
|
|
104
|
+
<line num="170" count="66" type="stmt"/>
|
|
105
|
+
<line num="171" count="66" type="stmt"/>
|
|
106
|
+
<line num="178" count="121" type="cond" truecount="1" falsecount="1"/>
|
|
107
|
+
<line num="180" count="121" type="stmt"/>
|
|
108
|
+
<line num="182" count="0" type="stmt"/>
|
|
109
|
+
<line num="184" count="736" type="stmt"/>
|
|
110
|
+
<line num="187" count="26" type="stmt"/>
|
|
111
|
+
<line num="208" count="8" type="stmt"/>
|
|
112
|
+
<line num="209" count="13" type="stmt"/>
|
|
113
|
+
<line num="210" count="13" type="stmt"/>
|
|
114
|
+
<line num="211" count="13" type="stmt"/>
|
|
115
|
+
<line num="212" count="111" type="stmt"/>
|
|
116
|
+
<line num="213" count="111" type="cond" truecount="3" falsecount="1"/>
|
|
117
|
+
<line num="215" count="111" type="cond" truecount="2" falsecount="0"/>
|
|
118
|
+
<line num="216" count="85" type="stmt"/>
|
|
119
|
+
<line num="219" count="26" type="stmt"/>
|
|
120
|
+
<line num="221" count="111" type="stmt"/>
|
|
121
|
+
<line num="223" count="13" type="stmt"/>
|
|
122
|
+
<line num="225" count="8" type="stmt"/>
|
|
123
|
+
<line num="226" count="111" type="stmt"/>
|
|
124
|
+
<line num="227" count="1104" type="stmt"/>
|
|
125
|
+
<line num="228" count="1104" type="stmt"/>
|
|
126
|
+
<line num="229" count="3703" type="stmt"/>
|
|
127
|
+
<line num="230" count="3703" type="cond" truecount="1" falsecount="1"/>
|
|
128
|
+
<line num="231" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
129
|
+
<line num="232" count="0" type="stmt"/>
|
|
130
|
+
<line num="235" count="0" type="stmt"/>
|
|
131
|
+
<line num="238" count="3703" type="stmt"/>
|
|
132
|
+
<line num="239" count="3703" type="stmt"/>
|
|
133
|
+
<line num="241" count="1104" type="stmt"/>
|
|
134
|
+
<line num="248" count="8" type="stmt"/>
|
|
135
|
+
<line num="249" count="111" type="stmt"/>
|
|
136
|
+
<line num="250" count="3703" type="stmt"/>
|
|
137
|
+
<line num="251" count="3703" type="stmt"/>
|
|
138
|
+
<line num="252" count="3703" type="cond" truecount="2" falsecount="0"/>
|
|
139
|
+
<line num="253" count="3703" type="stmt"/>
|
|
140
|
+
<line num="254" count="3703" type="stmt"/>
|
|
141
|
+
<line num="257" count="8" type="stmt"/>
|
|
142
|
+
<line num="258" count="13" type="cond" truecount="1" falsecount="1"/>
|
|
143
|
+
<line num="259" count="13" type="stmt"/>
|
|
144
|
+
<line num="260" count="13" type="stmt"/>
|
|
145
|
+
<line num="261" count="13" type="stmt"/>
|
|
146
|
+
<line num="262" count="13" type="stmt"/>
|
|
147
|
+
<line num="263" count="26" type="stmt"/>
|
|
148
|
+
<line num="264" count="13" type="stmt"/>
|
|
149
|
+
<line num="265" count="13" type="cond" truecount="1" falsecount="1"/>
|
|
150
|
+
<line num="267" count="8" type="stmt"/>
|
|
151
|
+
<line num="268" count="4" type="stmt"/>
|
|
152
|
+
<line num="269" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
153
|
+
<line num="270" count="0" type="stmt"/>
|
|
154
|
+
<line num="272" count="4" type="cond" truecount="3" falsecount="1"/>
|
|
155
|
+
<line num="273" count="0" type="stmt"/>
|
|
156
|
+
<line num="275" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
157
|
+
<line num="276" count="0" type="stmt"/>
|
|
158
|
+
<line num="278" count="4" type="stmt"/>
|
|
159
|
+
<line num="280" count="8" type="stmt"/>
|
|
160
|
+
<line num="281" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
161
|
+
<line num="282" count="0" type="stmt"/>
|
|
162
|
+
<line num="284" count="0" type="stmt"/>
|
|
163
|
+
<line num="285" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
164
|
+
<line num="286" count="0" type="stmt"/>
|
|
165
|
+
<line num="288" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
166
|
+
<line num="290" count="8" type="stmt"/>
|
|
167
|
+
<line num="291" count="0" type="stmt"/>
|
|
168
|
+
<line num="292" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
169
|
+
<line num="293" count="0" type="stmt"/>
|
|
170
|
+
<line num="295" count="0" type="stmt"/>
|
|
171
|
+
<line num="297" count="8" type="stmt"/>
|
|
172
|
+
<line num="298" count="0" type="stmt"/>
|
|
173
|
+
<line num="299" count="0" type="stmt"/>
|
|
174
|
+
<line num="300" count="0" type="stmt"/>
|
|
175
|
+
<line num="302" count="0" type="stmt"/>
|
|
176
|
+
<line num="303" count="0" type="stmt"/>
|
|
177
|
+
<line num="304" count="0" type="stmt"/>
|
|
178
|
+
<line num="305" count="0" type="stmt"/>
|
|
179
|
+
<line num="306" count="0" type="stmt"/>
|
|
180
|
+
<line num="308" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
181
|
+
<line num="309" count="0" type="stmt"/>
|
|
182
|
+
<line num="310" count="0" type="stmt"/>
|
|
183
|
+
<line num="311" count="0" type="stmt"/>
|
|
184
|
+
<line num="312" count="0" type="stmt"/>
|
|
185
|
+
<line num="313" count="0" type="stmt"/>
|
|
186
|
+
<line num="314" count="0" type="stmt"/>
|
|
187
|
+
<line num="315" count="0" type="stmt"/>
|
|
188
|
+
<line num="316" count="0" type="stmt"/>
|
|
189
|
+
<line num="317" count="0" type="stmt"/>
|
|
190
|
+
<line num="318" count="0" type="stmt"/>
|
|
191
|
+
<line num="320" count="8" type="stmt"/>
|
|
192
|
+
<line num="321" count="0" type="stmt"/>
|
|
193
|
+
<line num="322" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
194
|
+
<line num="325" count="0" type="stmt"/>
|
|
195
|
+
<line num="326" count="0" type="stmt"/>
|
|
196
|
+
<line num="328" count="0" type="stmt"/>
|
|
197
|
+
<line num="329" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
198
|
+
<line num="332" count="0" type="stmt"/>
|
|
199
|
+
<line num="333" count="0" type="stmt"/>
|
|
200
|
+
<line num="337" count="8" type="stmt"/>
|
|
201
|
+
<line num="338" count="0" type="stmt"/>
|
|
202
|
+
<line num="339" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
203
|
+
<line num="342" count="0" type="stmt"/>
|
|
204
|
+
<line num="343" count="0" type="stmt"/>
|
|
205
|
+
<line num="345" count="0" type="stmt"/>
|
|
206
|
+
<line num="346" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
207
|
+
<line num="349" count="0" type="stmt"/>
|
|
208
|
+
<line num="350" count="0" type="stmt"/>
|
|
209
|
+
<line num="351" count="0" type="stmt"/>
|
|
210
|
+
<line num="353" count="8" type="stmt"/>
|
|
211
|
+
<line num="354" count="0" type="stmt"/>
|
|
212
|
+
<line num="355" count="0" type="stmt"/>
|
|
213
|
+
<line num="356" count="0" type="stmt"/>
|
|
214
|
+
<line num="357" count="0" type="stmt"/>
|
|
215
|
+
<line num="358" count="0" type="stmt"/>
|
|
216
|
+
<line num="360" count="0" type="stmt"/>
|
|
217
|
+
<line num="362" count="8" type="stmt"/>
|
|
218
|
+
<line num="363" count="0" type="stmt"/>
|
|
219
|
+
<line num="368" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
220
|
+
<line num="369" count="0" type="stmt"/>
|
|
221
|
+
<line num="371" count="0" type="stmt"/>
|
|
222
|
+
<line num="374" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
223
|
+
<line num="375" count="0" type="stmt"/>
|
|
224
|
+
<line num="377" count="0" type="stmt"/>
|
|
225
|
+
<line num="380" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
226
|
+
<line num="381" count="0" type="stmt"/>
|
|
227
|
+
<line num="383" count="0" type="stmt"/>
|
|
228
|
+
<line num="386" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
229
|
+
<line num="387" count="0" type="stmt"/>
|
|
230
|
+
<line num="389" count="0" type="stmt"/>
|
|
231
|
+
<line num="392" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
232
|
+
<line num="393" count="0" type="stmt"/>
|
|
233
|
+
<line num="395" count="0" type="stmt"/>
|
|
234
|
+
<line num="402" count="8" type="stmt"/>
|
|
235
|
+
<line num="403" count="0" type="stmt"/>
|
|
236
|
+
<line num="404" count="0" type="stmt"/>
|
|
237
|
+
<line num="409" count="0" type="stmt"/>
|
|
238
|
+
<line num="412" count="8" type="cond" truecount="0" falsecount="2"/>
|
|
239
|
+
<line num="413" count="0" type="stmt"/>
|
|
240
|
+
<line num="414" count="0" type="stmt"/>
|
|
241
|
+
<line num="420" count="0" type="stmt"/>
|
|
242
|
+
<line num="423" count="8" type="stmt"/>
|
|
243
|
+
<line num="424" count="0" type="stmt"/>
|
|
244
|
+
<line num="425" count="0" type="stmt"/>
|
|
245
|
+
<line num="429" count="0" type="stmt"/>
|
|
246
|
+
<line num="431" count="8" type="stmt"/>
|
|
247
|
+
<line num="432" count="0" type="stmt"/>
|
|
248
|
+
<line num="433" count="0" type="stmt"/>
|
|
249
|
+
<line num="437" count="0" type="stmt"/>
|
|
250
|
+
<line num="439" count="8" type="stmt"/>
|
|
251
|
+
<line num="440" count="0" type="stmt"/>
|
|
252
|
+
<line num="441" count="0" type="stmt"/>
|
|
253
|
+
<line num="446" count="0" type="stmt"/>
|
|
254
|
+
<line num="448" count="8" type="stmt"/>
|
|
255
|
+
<line num="449" count="0" type="stmt"/>
|
|
256
|
+
<line num="450" count="0" type="stmt"/>
|
|
257
|
+
<line num="455" count="0" type="stmt"/>
|
|
258
|
+
<line num="457" count="8" type="stmt"/>
|
|
259
|
+
<line num="458" count="0" type="stmt"/>
|
|
260
|
+
<line num="459" count="0" type="stmt"/>
|
|
261
|
+
<line num="464" count="0" type="stmt"/>
|
|
262
|
+
<line num="466" count="8" type="stmt"/>
|
|
263
|
+
<line num="467" count="0" type="stmt"/>
|
|
264
|
+
<line num="468" count="0" type="stmt"/>
|
|
265
|
+
<line num="473" count="0" type="stmt"/>
|
|
266
|
+
<line num="475" count="8" type="stmt"/>
|
|
267
|
+
<line num="507" count="50" type="stmt"/>
|
|
268
|
+
<line num="508" count="50" type="stmt"/>
|
|
269
|
+
<line num="512" count="1" type="stmt"/>
|
|
270
|
+
</file>
|
|
271
|
+
<file name="index.js" path="/Users/craigmartin/projects/pure-orm/dist/src/index.js">
|
|
272
|
+
<metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
273
|
+
<line num="2" count="1" type="stmt"/>
|
|
274
|
+
<line num="3" count="1" type="stmt"/>
|
|
275
|
+
<line num="4" count="1" type="stmt"/>
|
|
276
|
+
<line num="5" count="8" type="stmt"/>
|
|
277
|
+
</file>
|
|
278
|
+
</package>
|
|
279
|
+
<package name="dist.test-utils.blog">
|
|
280
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
281
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/blog/orm.js">
|
|
282
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
283
|
+
<line num="2" count="1" type="stmt"/>
|
|
284
|
+
<line num="3" count="1" type="stmt"/>
|
|
285
|
+
<line num="4" count="1" type="stmt"/>
|
|
286
|
+
<line num="5" count="1" type="stmt"/>
|
|
287
|
+
<line num="6" count="1" type="stmt"/>
|
|
288
|
+
<line num="7" count="1" type="stmt"/>
|
|
289
|
+
<line num="8" count="1" type="stmt"/>
|
|
290
|
+
<line num="9" count="1" type="stmt"/>
|
|
291
|
+
<line num="12" count="1" type="stmt"/>
|
|
292
|
+
</file>
|
|
293
|
+
</package>
|
|
294
|
+
<package name="dist.test-utils.blog.models">
|
|
295
|
+
<metrics statements="69" coveredstatements="66" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="6"/>
|
|
296
|
+
<file name="article.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/blog/models/article.js">
|
|
297
|
+
<metrics statements="22" coveredstatements="22" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
298
|
+
<line num="2" count="1" type="stmt"/>
|
|
299
|
+
<line num="3" count="1" type="stmt"/>
|
|
300
|
+
<line num="4" count="1" type="stmt"/>
|
|
301
|
+
<line num="5" count="1" type="stmt"/>
|
|
302
|
+
<line num="6" count="1" type="stmt"/>
|
|
303
|
+
<line num="22" count="23" type="stmt"/>
|
|
304
|
+
<line num="23" count="23" type="stmt"/>
|
|
305
|
+
<line num="24" count="23" type="stmt"/>
|
|
306
|
+
<line num="25" count="23" type="stmt"/>
|
|
307
|
+
<line num="26" count="23" type="stmt"/>
|
|
308
|
+
<line num="27" count="23" type="stmt"/>
|
|
309
|
+
<line num="28" count="23" type="stmt"/>
|
|
310
|
+
<line num="29" count="23" type="stmt"/>
|
|
311
|
+
<line num="30" count="23" type="stmt"/>
|
|
312
|
+
<line num="31" count="23" type="stmt"/>
|
|
313
|
+
<line num="32" count="23" type="stmt"/>
|
|
314
|
+
<line num="33" count="23" type="stmt"/>
|
|
315
|
+
<line num="34" count="23" type="stmt"/>
|
|
316
|
+
<line num="37" count="1" type="stmt"/>
|
|
317
|
+
<line num="40" count="2" type="stmt"/>
|
|
318
|
+
<line num="43" count="1" type="stmt"/>
|
|
319
|
+
<line num="44" count="1" type="stmt"/>
|
|
320
|
+
</file>
|
|
321
|
+
<file name="article_tag.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/blog/models/article_tag.js">
|
|
322
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
323
|
+
<line num="2" count="1" type="stmt"/>
|
|
324
|
+
<line num="3" count="1" type="stmt"/>
|
|
325
|
+
<line num="4" count="1" type="stmt"/>
|
|
326
|
+
<line num="5" count="1" type="stmt"/>
|
|
327
|
+
<line num="6" count="1" type="stmt"/>
|
|
328
|
+
<line num="7" count="1" type="stmt"/>
|
|
329
|
+
<line num="14" count="23" type="stmt"/>
|
|
330
|
+
<line num="15" count="23" type="stmt"/>
|
|
331
|
+
<line num="16" count="23" type="stmt"/>
|
|
332
|
+
<line num="17" count="23" type="stmt"/>
|
|
333
|
+
<line num="18" count="23" type="stmt"/>
|
|
334
|
+
<line num="21" count="1" type="stmt"/>
|
|
335
|
+
<line num="24" count="3" type="stmt"/>
|
|
336
|
+
<line num="27" count="1" type="stmt"/>
|
|
337
|
+
<line num="28" count="1" type="stmt"/>
|
|
338
|
+
</file>
|
|
339
|
+
<file name="person.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/blog/models/person.js">
|
|
340
|
+
<metrics statements="21" coveredstatements="19" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
341
|
+
<line num="2" count="1" type="stmt"/>
|
|
342
|
+
<line num="3" count="1" type="stmt"/>
|
|
343
|
+
<line num="4" count="1" type="stmt"/>
|
|
344
|
+
<line num="5" count="1" type="stmt"/>
|
|
345
|
+
<line num="21" count="23" type="stmt"/>
|
|
346
|
+
<line num="22" count="23" type="stmt"/>
|
|
347
|
+
<line num="23" count="23" type="stmt"/>
|
|
348
|
+
<line num="24" count="23" type="stmt"/>
|
|
349
|
+
<line num="25" count="23" type="stmt"/>
|
|
350
|
+
<line num="26" count="23" type="stmt"/>
|
|
351
|
+
<line num="27" count="23" type="stmt"/>
|
|
352
|
+
<line num="28" count="23" type="stmt"/>
|
|
353
|
+
<line num="29" count="23" type="stmt"/>
|
|
354
|
+
<line num="30" count="23" type="stmt"/>
|
|
355
|
+
<line num="31" count="23" type="stmt"/>
|
|
356
|
+
<line num="32" count="23" type="stmt"/>
|
|
357
|
+
<line num="35" count="1" type="stmt"/>
|
|
358
|
+
<line num="38" count="0" type="stmt"/>
|
|
359
|
+
<line num="39" count="0" type="stmt"/>
|
|
360
|
+
<line num="42" count="1" type="stmt"/>
|
|
361
|
+
<line num="43" count="1" type="stmt"/>
|
|
362
|
+
</file>
|
|
363
|
+
<file name="tag.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/blog/models/tag.js">
|
|
364
|
+
<metrics statements="11" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
365
|
+
<line num="2" count="1" type="stmt"/>
|
|
366
|
+
<line num="3" count="1" type="stmt"/>
|
|
367
|
+
<line num="4" count="1" type="stmt"/>
|
|
368
|
+
<line num="5" count="1" type="stmt"/>
|
|
369
|
+
<line num="8" count="23" type="stmt"/>
|
|
370
|
+
<line num="9" count="23" type="stmt"/>
|
|
371
|
+
<line num="10" count="23" type="stmt"/>
|
|
372
|
+
<line num="13" count="1" type="stmt"/>
|
|
373
|
+
<line num="16" count="0" type="stmt"/>
|
|
374
|
+
<line num="19" count="1" type="stmt"/>
|
|
375
|
+
<line num="20" count="1" type="stmt"/>
|
|
376
|
+
</file>
|
|
377
|
+
</package>
|
|
378
|
+
<package name="dist.test-utils.five">
|
|
379
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
380
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/five/orm.js">
|
|
381
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
382
|
+
<line num="2" count="1" type="stmt"/>
|
|
383
|
+
<line num="3" count="1" type="stmt"/>
|
|
384
|
+
<line num="4" count="1" type="stmt"/>
|
|
385
|
+
<line num="5" count="1" type="stmt"/>
|
|
386
|
+
<line num="6" count="1" type="stmt"/>
|
|
387
|
+
<line num="7" count="1" type="stmt"/>
|
|
388
|
+
<line num="8" count="1" type="stmt"/>
|
|
389
|
+
<line num="9" count="1" type="stmt"/>
|
|
390
|
+
<line num="10" count="1" type="stmt"/>
|
|
391
|
+
<line num="19" count="1" type="stmt"/>
|
|
392
|
+
</file>
|
|
393
|
+
</package>
|
|
394
|
+
<package name="dist.test-utils.five.models">
|
|
395
|
+
<metrics statements="60" coveredstatements="59" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="9"/>
|
|
396
|
+
<file name="line-item.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/five/models/line-item.js">
|
|
397
|
+
<metrics statements="12" coveredstatements="12" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
398
|
+
<line num="2" count="1" type="stmt"/>
|
|
399
|
+
<line num="3" count="1" type="stmt"/>
|
|
400
|
+
<line num="4" count="1" type="stmt"/>
|
|
401
|
+
<line num="5" count="1" type="stmt"/>
|
|
402
|
+
<line num="6" count="1" type="stmt"/>
|
|
403
|
+
<line num="12" count="4" type="stmt"/>
|
|
404
|
+
<line num="13" count="4" type="stmt"/>
|
|
405
|
+
<line num="14" count="4" type="stmt"/>
|
|
406
|
+
<line num="17" count="1" type="stmt"/>
|
|
407
|
+
<line num="20" count="2" type="stmt"/>
|
|
408
|
+
<line num="23" count="1" type="stmt"/>
|
|
409
|
+
<line num="24" count="1" type="stmt"/>
|
|
410
|
+
</file>
|
|
411
|
+
<file name="order.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/five/models/order.js">
|
|
412
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
413
|
+
<line num="2" count="1" type="stmt"/>
|
|
414
|
+
<line num="3" count="1" type="stmt"/>
|
|
415
|
+
<line num="4" count="1" type="stmt"/>
|
|
416
|
+
<line num="5" count="1" type="stmt"/>
|
|
417
|
+
<line num="8" count="4" type="stmt"/>
|
|
418
|
+
<line num="9" count="4" type="stmt"/>
|
|
419
|
+
<line num="12" count="1" type="stmt"/>
|
|
420
|
+
<line num="15" count="1" type="stmt"/>
|
|
421
|
+
<line num="18" count="1" type="stmt"/>
|
|
422
|
+
<line num="19" count="1" type="stmt"/>
|
|
423
|
+
</file>
|
|
424
|
+
<file name="parcel-event.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/five/models/parcel-event.js">
|
|
425
|
+
<metrics statements="14" coveredstatements="14" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
426
|
+
<line num="2" count="1" type="stmt"/>
|
|
427
|
+
<line num="3" count="1" type="stmt"/>
|
|
428
|
+
<line num="4" count="1" type="stmt"/>
|
|
429
|
+
<line num="5" count="1" type="stmt"/>
|
|
430
|
+
<line num="6" count="1" type="stmt"/>
|
|
431
|
+
<line num="14" count="4" type="stmt"/>
|
|
432
|
+
<line num="15" count="4" type="stmt"/>
|
|
433
|
+
<line num="16" count="4" type="stmt"/>
|
|
434
|
+
<line num="17" count="4" type="stmt"/>
|
|
435
|
+
<line num="18" count="4" type="stmt"/>
|
|
436
|
+
<line num="21" count="1" type="stmt"/>
|
|
437
|
+
<line num="24" count="1" type="stmt"/>
|
|
438
|
+
<line num="27" count="1" type="stmt"/>
|
|
439
|
+
<line num="28" count="1" type="stmt"/>
|
|
440
|
+
</file>
|
|
441
|
+
<file name="parcel-line-item.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/five/models/parcel-line-item.js">
|
|
442
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
443
|
+
<line num="2" count="1" type="stmt"/>
|
|
444
|
+
<line num="3" count="1" type="stmt"/>
|
|
445
|
+
<line num="4" count="1" type="stmt"/>
|
|
446
|
+
<line num="5" count="1" type="stmt"/>
|
|
447
|
+
<line num="6" count="1" type="stmt"/>
|
|
448
|
+
<line num="7" count="1" type="stmt"/>
|
|
449
|
+
<line num="14" count="4" type="stmt"/>
|
|
450
|
+
<line num="15" count="4" type="stmt"/>
|
|
451
|
+
<line num="16" count="4" type="stmt"/>
|
|
452
|
+
<line num="17" count="4" type="stmt"/>
|
|
453
|
+
<line num="18" count="4" type="stmt"/>
|
|
454
|
+
<line num="21" count="1" type="stmt"/>
|
|
455
|
+
<line num="24" count="1" type="stmt"/>
|
|
456
|
+
<line num="27" count="1" type="stmt"/>
|
|
457
|
+
<line num="28" count="1" type="stmt"/>
|
|
458
|
+
</file>
|
|
459
|
+
<file name="parcel.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/five/models/parcel.js">
|
|
460
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
461
|
+
<line num="2" count="1" type="stmt"/>
|
|
462
|
+
<line num="3" count="1" type="stmt"/>
|
|
463
|
+
<line num="4" count="1" type="stmt"/>
|
|
464
|
+
<line num="5" count="1" type="stmt"/>
|
|
465
|
+
<line num="8" count="4" type="stmt"/>
|
|
466
|
+
<line num="11" count="1" type="stmt"/>
|
|
467
|
+
<line num="14" count="0" type="stmt"/>
|
|
468
|
+
<line num="17" count="1" type="stmt"/>
|
|
469
|
+
<line num="18" count="1" type="stmt"/>
|
|
470
|
+
</file>
|
|
471
|
+
</package>
|
|
472
|
+
<package name="dist.test-utils.nine">
|
|
473
|
+
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
474
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/nine/orm.js">
|
|
475
|
+
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
476
|
+
<line num="2" count="1" type="stmt"/>
|
|
477
|
+
<line num="3" count="1" type="stmt"/>
|
|
478
|
+
<line num="4" count="1" type="stmt"/>
|
|
479
|
+
<line num="5" count="1" type="stmt"/>
|
|
480
|
+
<line num="6" count="1" type="stmt"/>
|
|
481
|
+
<line num="9" count="1" type="stmt"/>
|
|
482
|
+
</file>
|
|
483
|
+
</package>
|
|
484
|
+
<package name="dist.test-utils.nine.models">
|
|
485
|
+
<metrics statements="12" coveredstatements="12" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
486
|
+
<file name="feature-switch.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/nine/models/feature-switch.js">
|
|
487
|
+
<metrics statements="12" coveredstatements="12" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
488
|
+
<line num="2" count="1" type="stmt"/>
|
|
489
|
+
<line num="3" count="1" type="stmt"/>
|
|
490
|
+
<line num="4" count="1" type="stmt"/>
|
|
491
|
+
<line num="5" count="1" type="stmt"/>
|
|
492
|
+
<line num="8" count="2" type="stmt"/>
|
|
493
|
+
<line num="9" count="2" type="stmt"/>
|
|
494
|
+
<line num="10" count="2" type="stmt"/>
|
|
495
|
+
<line num="13" count="1" type="stmt"/>
|
|
496
|
+
<line num="16" count="1" type="stmt"/>
|
|
497
|
+
<line num="17" count="1" type="stmt"/>
|
|
498
|
+
<line num="20" count="1" type="stmt"/>
|
|
499
|
+
<line num="21" count="1" type="stmt"/>
|
|
500
|
+
</file>
|
|
501
|
+
</package>
|
|
502
|
+
<package name="dist.test-utils.order">
|
|
503
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
504
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order/orm.js">
|
|
505
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
506
|
+
<line num="2" count="1" type="stmt"/>
|
|
507
|
+
<line num="3" count="1" type="stmt"/>
|
|
508
|
+
<line num="4" count="1" type="stmt"/>
|
|
509
|
+
<line num="5" count="1" type="stmt"/>
|
|
510
|
+
<line num="6" count="1" type="stmt"/>
|
|
511
|
+
<line num="7" count="1" type="stmt"/>
|
|
512
|
+
<line num="8" count="1" type="stmt"/>
|
|
513
|
+
<line num="9" count="1" type="stmt"/>
|
|
514
|
+
<line num="10" count="1" type="stmt"/>
|
|
515
|
+
<line num="19" count="1" type="stmt"/>
|
|
516
|
+
</file>
|
|
517
|
+
</package>
|
|
518
|
+
<package name="dist.test-utils.order-more">
|
|
519
|
+
<metrics statements="25" coveredstatements="25" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
520
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/orm.js">
|
|
521
|
+
<metrics statements="25" coveredstatements="25" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
522
|
+
<line num="2" count="1" type="stmt"/>
|
|
523
|
+
<line num="3" count="1" type="stmt"/>
|
|
524
|
+
<line num="4" count="1" type="stmt"/>
|
|
525
|
+
<line num="5" count="1" type="stmt"/>
|
|
526
|
+
<line num="6" count="1" type="stmt"/>
|
|
527
|
+
<line num="7" count="1" type="stmt"/>
|
|
528
|
+
<line num="8" count="1" type="stmt"/>
|
|
529
|
+
<line num="9" count="1" type="stmt"/>
|
|
530
|
+
<line num="10" count="1" type="stmt"/>
|
|
531
|
+
<line num="11" count="1" type="stmt"/>
|
|
532
|
+
<line num="12" count="1" type="stmt"/>
|
|
533
|
+
<line num="13" count="1" type="stmt"/>
|
|
534
|
+
<line num="14" count="1" type="stmt"/>
|
|
535
|
+
<line num="15" count="1" type="stmt"/>
|
|
536
|
+
<line num="16" count="1" type="stmt"/>
|
|
537
|
+
<line num="17" count="1" type="stmt"/>
|
|
538
|
+
<line num="18" count="1" type="stmt"/>
|
|
539
|
+
<line num="19" count="1" type="stmt"/>
|
|
540
|
+
<line num="20" count="1" type="stmt"/>
|
|
541
|
+
<line num="21" count="1" type="stmt"/>
|
|
542
|
+
<line num="22" count="1" type="stmt"/>
|
|
543
|
+
<line num="23" count="1" type="stmt"/>
|
|
544
|
+
<line num="24" count="1" type="stmt"/>
|
|
545
|
+
<line num="25" count="1" type="stmt"/>
|
|
546
|
+
<line num="49" count="1" type="stmt"/>
|
|
547
|
+
</file>
|
|
548
|
+
</package>
|
|
549
|
+
<package name="dist.test-utils.order-more.models">
|
|
550
|
+
<metrics statements="338" coveredstatements="328" conditionals="0" coveredconditionals="0" methods="40" coveredmethods="30"/>
|
|
551
|
+
<file name="actual-product-variant.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/actual-product-variant.js">
|
|
552
|
+
<metrics statements="10" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
553
|
+
<line num="2" count="1" type="stmt"/>
|
|
554
|
+
<line num="3" count="1" type="stmt"/>
|
|
555
|
+
<line num="4" count="1" type="stmt"/>
|
|
556
|
+
<line num="5" count="1" type="stmt"/>
|
|
557
|
+
<line num="8" count="22" type="stmt"/>
|
|
558
|
+
<line num="9" count="22" type="stmt"/>
|
|
559
|
+
<line num="12" count="1" type="stmt"/>
|
|
560
|
+
<line num="15" count="0" type="stmt"/>
|
|
561
|
+
<line num="18" count="1" type="stmt"/>
|
|
562
|
+
<line num="19" count="1" type="stmt"/>
|
|
563
|
+
</file>
|
|
564
|
+
<file name="color.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/color.js">
|
|
565
|
+
<metrics statements="13" coveredstatements="12" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
566
|
+
<line num="2" count="1" type="stmt"/>
|
|
567
|
+
<line num="3" count="1" type="stmt"/>
|
|
568
|
+
<line num="4" count="1" type="stmt"/>
|
|
569
|
+
<line num="5" count="1" type="stmt"/>
|
|
570
|
+
<line num="14" count="69" type="stmt"/>
|
|
571
|
+
<line num="15" count="69" type="stmt"/>
|
|
572
|
+
<line num="16" count="69" type="stmt"/>
|
|
573
|
+
<line num="17" count="69" type="stmt"/>
|
|
574
|
+
<line num="18" count="69" type="stmt"/>
|
|
575
|
+
<line num="21" count="1" type="stmt"/>
|
|
576
|
+
<line num="24" count="0" type="stmt"/>
|
|
577
|
+
<line num="27" count="1" type="stmt"/>
|
|
578
|
+
<line num="28" count="1" type="stmt"/>
|
|
579
|
+
</file>
|
|
580
|
+
<file name="customer.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/customer.js">
|
|
581
|
+
<metrics statements="10" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
582
|
+
<line num="2" count="1" type="stmt"/>
|
|
583
|
+
<line num="3" count="1" type="stmt"/>
|
|
584
|
+
<line num="4" count="1" type="stmt"/>
|
|
585
|
+
<line num="5" count="1" type="stmt"/>
|
|
586
|
+
<line num="8" count="47" type="stmt"/>
|
|
587
|
+
<line num="9" count="47" type="stmt"/>
|
|
588
|
+
<line num="12" count="1" type="stmt"/>
|
|
589
|
+
<line num="15" count="0" type="stmt"/>
|
|
590
|
+
<line num="18" count="1" type="stmt"/>
|
|
591
|
+
<line num="19" count="1" type="stmt"/>
|
|
592
|
+
</file>
|
|
593
|
+
<file name="gender.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/gender.js">
|
|
594
|
+
<metrics statements="11" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
595
|
+
<line num="2" count="1" type="stmt"/>
|
|
596
|
+
<line num="3" count="1" type="stmt"/>
|
|
597
|
+
<line num="4" count="1" type="stmt"/>
|
|
598
|
+
<line num="5" count="1" type="stmt"/>
|
|
599
|
+
<line num="8" count="45" type="stmt"/>
|
|
600
|
+
<line num="9" count="45" type="stmt"/>
|
|
601
|
+
<line num="10" count="45" type="stmt"/>
|
|
602
|
+
<line num="13" count="1" type="stmt"/>
|
|
603
|
+
<line num="16" count="0" type="stmt"/>
|
|
604
|
+
<line num="19" count="1" type="stmt"/>
|
|
605
|
+
<line num="20" count="1" type="stmt"/>
|
|
606
|
+
</file>
|
|
607
|
+
<file name="inventory-level.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/inventory-level.js">
|
|
608
|
+
<metrics statements="19" coveredstatements="19" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
609
|
+
<line num="2" count="1" type="stmt"/>
|
|
610
|
+
<line num="3" count="1" type="stmt"/>
|
|
611
|
+
<line num="4" count="1" type="stmt"/>
|
|
612
|
+
<line num="5" count="1" type="stmt"/>
|
|
613
|
+
<line num="6" count="1" type="stmt"/>
|
|
614
|
+
<line num="7" count="1" type="stmt"/>
|
|
615
|
+
<line num="18" count="16" type="stmt"/>
|
|
616
|
+
<line num="19" count="16" type="stmt"/>
|
|
617
|
+
<line num="20" count="16" type="stmt"/>
|
|
618
|
+
<line num="21" count="16" type="stmt"/>
|
|
619
|
+
<line num="22" count="16" type="stmt"/>
|
|
620
|
+
<line num="23" count="16" type="stmt"/>
|
|
621
|
+
<line num="24" count="16" type="stmt"/>
|
|
622
|
+
<line num="25" count="16" type="stmt"/>
|
|
623
|
+
<line num="26" count="16" type="stmt"/>
|
|
624
|
+
<line num="29" count="1" type="stmt"/>
|
|
625
|
+
<line num="32" count="2" type="stmt"/>
|
|
626
|
+
<line num="35" count="1" type="stmt"/>
|
|
627
|
+
<line num="36" count="1" type="stmt"/>
|
|
628
|
+
</file>
|
|
629
|
+
<file name="line-item.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/line-item.js">
|
|
630
|
+
<metrics statements="23" coveredstatements="23" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
631
|
+
<line num="2" count="1" type="stmt"/>
|
|
632
|
+
<line num="3" count="1" type="stmt"/>
|
|
633
|
+
<line num="4" count="1" type="stmt"/>
|
|
634
|
+
<line num="5" count="1" type="stmt"/>
|
|
635
|
+
<line num="6" count="1" type="stmt"/>
|
|
636
|
+
<line num="7" count="1" type="stmt"/>
|
|
637
|
+
<line num="23" count="47" type="stmt"/>
|
|
638
|
+
<line num="24" count="47" type="stmt"/>
|
|
639
|
+
<line num="25" count="47" type="stmt"/>
|
|
640
|
+
<line num="26" count="47" type="stmt"/>
|
|
641
|
+
<line num="27" count="47" type="stmt"/>
|
|
642
|
+
<line num="28" count="47" type="stmt"/>
|
|
643
|
+
<line num="29" count="47" type="stmt"/>
|
|
644
|
+
<line num="30" count="47" type="stmt"/>
|
|
645
|
+
<line num="31" count="47" type="stmt"/>
|
|
646
|
+
<line num="32" count="47" type="stmt"/>
|
|
647
|
+
<line num="33" count="47" type="stmt"/>
|
|
648
|
+
<line num="34" count="47" type="stmt"/>
|
|
649
|
+
<line num="35" count="47" type="stmt"/>
|
|
650
|
+
<line num="38" count="1" type="stmt"/>
|
|
651
|
+
<line num="41" count="10" type="stmt"/>
|
|
652
|
+
<line num="44" count="1" type="stmt"/>
|
|
653
|
+
<line num="45" count="1" type="stmt"/>
|
|
654
|
+
</file>
|
|
655
|
+
<file name="order.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/order.js">
|
|
656
|
+
<metrics statements="48" coveredstatements="48" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
657
|
+
<line num="2" count="1" type="stmt"/>
|
|
658
|
+
<line num="3" count="1" type="stmt"/>
|
|
659
|
+
<line num="4" count="1" type="stmt"/>
|
|
660
|
+
<line num="5" count="1" type="stmt"/>
|
|
661
|
+
<line num="6" count="1" type="stmt"/>
|
|
662
|
+
<line num="7" count="1" type="stmt"/>
|
|
663
|
+
<line num="8" count="1" type="stmt"/>
|
|
664
|
+
<line num="39" count="47" type="stmt"/>
|
|
665
|
+
<line num="40" count="47" type="stmt"/>
|
|
666
|
+
<line num="41" count="47" type="stmt"/>
|
|
667
|
+
<line num="42" count="47" type="stmt"/>
|
|
668
|
+
<line num="43" count="47" type="stmt"/>
|
|
669
|
+
<line num="44" count="47" type="stmt"/>
|
|
670
|
+
<line num="45" count="47" type="stmt"/>
|
|
671
|
+
<line num="46" count="47" type="stmt"/>
|
|
672
|
+
<line num="47" count="47" type="stmt"/>
|
|
673
|
+
<line num="48" count="47" type="stmt"/>
|
|
674
|
+
<line num="49" count="47" type="stmt"/>
|
|
675
|
+
<line num="50" count="47" type="stmt"/>
|
|
676
|
+
<line num="51" count="47" type="stmt"/>
|
|
677
|
+
<line num="52" count="47" type="stmt"/>
|
|
678
|
+
<line num="53" count="47" type="stmt"/>
|
|
679
|
+
<line num="54" count="47" type="stmt"/>
|
|
680
|
+
<line num="55" count="47" type="stmt"/>
|
|
681
|
+
<line num="56" count="47" type="stmt"/>
|
|
682
|
+
<line num="57" count="47" type="stmt"/>
|
|
683
|
+
<line num="58" count="47" type="stmt"/>
|
|
684
|
+
<line num="59" count="47" type="stmt"/>
|
|
685
|
+
<line num="60" count="47" type="stmt"/>
|
|
686
|
+
<line num="61" count="47" type="stmt"/>
|
|
687
|
+
<line num="62" count="47" type="stmt"/>
|
|
688
|
+
<line num="63" count="47" type="stmt"/>
|
|
689
|
+
<line num="64" count="47" type="stmt"/>
|
|
690
|
+
<line num="65" count="47" type="stmt"/>
|
|
691
|
+
<line num="66" count="47" type="stmt"/>
|
|
692
|
+
<line num="67" count="47" type="stmt"/>
|
|
693
|
+
<line num="68" count="47" type="stmt"/>
|
|
694
|
+
<line num="69" count="47" type="stmt"/>
|
|
695
|
+
<line num="70" count="47" type="stmt"/>
|
|
696
|
+
<line num="71" count="47" type="stmt"/>
|
|
697
|
+
<line num="72" count="47" type="stmt"/>
|
|
698
|
+
<line num="73" count="47" type="stmt"/>
|
|
699
|
+
<line num="74" count="47" type="stmt"/>
|
|
700
|
+
<line num="75" count="47" type="stmt"/>
|
|
701
|
+
<line num="78" count="1" type="stmt"/>
|
|
702
|
+
<line num="81" count="2" type="stmt"/>
|
|
703
|
+
<line num="84" count="1" type="stmt"/>
|
|
704
|
+
<line num="85" count="1" type="stmt"/>
|
|
705
|
+
</file>
|
|
706
|
+
<file name="parcel-event.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/parcel-event.js">
|
|
707
|
+
<metrics statements="14" coveredstatements="14" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
708
|
+
<line num="2" count="1" type="stmt"/>
|
|
709
|
+
<line num="3" count="1" type="stmt"/>
|
|
710
|
+
<line num="4" count="1" type="stmt"/>
|
|
711
|
+
<line num="5" count="1" type="stmt"/>
|
|
712
|
+
<line num="6" count="1" type="stmt"/>
|
|
713
|
+
<line num="14" count="47" type="stmt"/>
|
|
714
|
+
<line num="15" count="47" type="stmt"/>
|
|
715
|
+
<line num="16" count="47" type="stmt"/>
|
|
716
|
+
<line num="17" count="47" type="stmt"/>
|
|
717
|
+
<line num="18" count="47" type="stmt"/>
|
|
718
|
+
<line num="21" count="1" type="stmt"/>
|
|
719
|
+
<line num="24" count="8" type="stmt"/>
|
|
720
|
+
<line num="27" count="1" type="stmt"/>
|
|
721
|
+
<line num="28" count="1" type="stmt"/>
|
|
722
|
+
</file>
|
|
723
|
+
<file name="parcel-line-item.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/parcel-line-item.js">
|
|
724
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
725
|
+
<line num="2" count="1" type="stmt"/>
|
|
726
|
+
<line num="3" count="1" type="stmt"/>
|
|
727
|
+
<line num="4" count="1" type="stmt"/>
|
|
728
|
+
<line num="5" count="1" type="stmt"/>
|
|
729
|
+
<line num="6" count="1" type="stmt"/>
|
|
730
|
+
<line num="7" count="1" type="stmt"/>
|
|
731
|
+
<line num="14" count="47" type="stmt"/>
|
|
732
|
+
<line num="15" count="47" type="stmt"/>
|
|
733
|
+
<line num="16" count="47" type="stmt"/>
|
|
734
|
+
<line num="17" count="47" type="stmt"/>
|
|
735
|
+
<line num="18" count="47" type="stmt"/>
|
|
736
|
+
<line num="21" count="1" type="stmt"/>
|
|
737
|
+
<line num="24" count="8" type="stmt"/>
|
|
738
|
+
<line num="27" count="1" type="stmt"/>
|
|
739
|
+
<line num="28" count="1" type="stmt"/>
|
|
740
|
+
</file>
|
|
741
|
+
<file name="parcel.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/parcel.js">
|
|
742
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
743
|
+
<line num="2" count="1" type="stmt"/>
|
|
744
|
+
<line num="3" count="1" type="stmt"/>
|
|
745
|
+
<line num="4" count="1" type="stmt"/>
|
|
746
|
+
<line num="5" count="1" type="stmt"/>
|
|
747
|
+
<line num="8" count="47" type="stmt"/>
|
|
748
|
+
<line num="11" count="1" type="stmt"/>
|
|
749
|
+
<line num="14" count="0" type="stmt"/>
|
|
750
|
+
<line num="17" count="1" type="stmt"/>
|
|
751
|
+
<line num="18" count="1" type="stmt"/>
|
|
752
|
+
</file>
|
|
753
|
+
<file name="physical-address.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/physical-address.js">
|
|
754
|
+
<metrics statements="19" coveredstatements="18" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
755
|
+
<line num="2" count="1" type="stmt"/>
|
|
756
|
+
<line num="3" count="1" type="stmt"/>
|
|
757
|
+
<line num="4" count="1" type="stmt"/>
|
|
758
|
+
<line num="5" count="1" type="stmt"/>
|
|
759
|
+
<line num="20" count="47" type="stmt"/>
|
|
760
|
+
<line num="21" count="47" type="stmt"/>
|
|
761
|
+
<line num="22" count="47" type="stmt"/>
|
|
762
|
+
<line num="23" count="47" type="stmt"/>
|
|
763
|
+
<line num="24" count="47" type="stmt"/>
|
|
764
|
+
<line num="25" count="47" type="stmt"/>
|
|
765
|
+
<line num="26" count="47" type="stmt"/>
|
|
766
|
+
<line num="27" count="47" type="stmt"/>
|
|
767
|
+
<line num="28" count="47" type="stmt"/>
|
|
768
|
+
<line num="29" count="47" type="stmt"/>
|
|
769
|
+
<line num="30" count="47" type="stmt"/>
|
|
770
|
+
<line num="33" count="1" type="stmt"/>
|
|
771
|
+
<line num="36" count="0" type="stmt"/>
|
|
772
|
+
<line num="39" count="1" type="stmt"/>
|
|
773
|
+
<line num="40" count="1" type="stmt"/>
|
|
774
|
+
</file>
|
|
775
|
+
<file name="product-variant-image.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/product-variant-image.js">
|
|
776
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
777
|
+
<line num="2" count="1" type="stmt"/>
|
|
778
|
+
<line num="3" count="1" type="stmt"/>
|
|
779
|
+
<line num="4" count="1" type="stmt"/>
|
|
780
|
+
<line num="5" count="1" type="stmt"/>
|
|
781
|
+
<line num="6" count="1" type="stmt"/>
|
|
782
|
+
<line num="15" count="61" type="stmt"/>
|
|
783
|
+
<line num="16" count="61" type="stmt"/>
|
|
784
|
+
<line num="17" count="61" type="stmt"/>
|
|
785
|
+
<line num="18" count="61" type="stmt"/>
|
|
786
|
+
<line num="19" count="61" type="stmt"/>
|
|
787
|
+
<line num="20" count="61" type="stmt"/>
|
|
788
|
+
<line num="23" count="1" type="stmt"/>
|
|
789
|
+
<line num="26" count="14" type="stmt"/>
|
|
790
|
+
<line num="29" count="1" type="stmt"/>
|
|
791
|
+
<line num="30" count="1" type="stmt"/>
|
|
792
|
+
</file>
|
|
793
|
+
<file name="product-variant.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/product-variant.js">
|
|
794
|
+
<metrics statements="33" coveredstatements="33" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
795
|
+
<line num="2" count="1" type="stmt"/>
|
|
796
|
+
<line num="3" count="1" type="stmt"/>
|
|
797
|
+
<line num="4" count="1" type="stmt"/>
|
|
798
|
+
<line num="5" count="1" type="stmt"/>
|
|
799
|
+
<line num="6" count="1" type="stmt"/>
|
|
800
|
+
<line num="7" count="1" type="stmt"/>
|
|
801
|
+
<line num="8" count="1" type="stmt"/>
|
|
802
|
+
<line num="9" count="1" type="stmt"/>
|
|
803
|
+
<line num="10" count="1" type="stmt"/>
|
|
804
|
+
<line num="29" count="69" type="stmt"/>
|
|
805
|
+
<line num="30" count="69" type="stmt"/>
|
|
806
|
+
<line num="31" count="69" type="stmt"/>
|
|
807
|
+
<line num="32" count="69" type="stmt"/>
|
|
808
|
+
<line num="33" count="69" type="stmt"/>
|
|
809
|
+
<line num="34" count="69" type="stmt"/>
|
|
810
|
+
<line num="35" count="69" type="stmt"/>
|
|
811
|
+
<line num="36" count="69" type="stmt"/>
|
|
812
|
+
<line num="37" count="69" type="stmt"/>
|
|
813
|
+
<line num="38" count="69" type="stmt"/>
|
|
814
|
+
<line num="39" count="69" type="stmt"/>
|
|
815
|
+
<line num="40" count="69" type="stmt"/>
|
|
816
|
+
<line num="41" count="69" type="stmt"/>
|
|
817
|
+
<line num="42" count="69" type="stmt"/>
|
|
818
|
+
<line num="43" count="69" type="stmt"/>
|
|
819
|
+
<line num="44" count="69" type="stmt"/>
|
|
820
|
+
<line num="45" count="69" type="stmt"/>
|
|
821
|
+
<line num="46" count="69" type="stmt"/>
|
|
822
|
+
<line num="47" count="69" type="stmt"/>
|
|
823
|
+
<line num="48" count="69" type="stmt"/>
|
|
824
|
+
<line num="51" count="1" type="stmt"/>
|
|
825
|
+
<line num="54" count="6" type="stmt"/>
|
|
826
|
+
<line num="57" count="1" type="stmt"/>
|
|
827
|
+
<line num="58" count="1" type="stmt"/>
|
|
828
|
+
</file>
|
|
829
|
+
<file name="product.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/product.js">
|
|
830
|
+
<metrics statements="18" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
831
|
+
<line num="2" count="1" type="stmt"/>
|
|
832
|
+
<line num="3" count="1" type="stmt"/>
|
|
833
|
+
<line num="4" count="1" type="stmt"/>
|
|
834
|
+
<line num="5" count="1" type="stmt"/>
|
|
835
|
+
<line num="19" count="69" type="stmt"/>
|
|
836
|
+
<line num="20" count="69" type="stmt"/>
|
|
837
|
+
<line num="21" count="69" type="stmt"/>
|
|
838
|
+
<line num="22" count="69" type="stmt"/>
|
|
839
|
+
<line num="23" count="69" type="stmt"/>
|
|
840
|
+
<line num="24" count="69" type="stmt"/>
|
|
841
|
+
<line num="25" count="69" type="stmt"/>
|
|
842
|
+
<line num="26" count="69" type="stmt"/>
|
|
843
|
+
<line num="27" count="69" type="stmt"/>
|
|
844
|
+
<line num="28" count="69" type="stmt"/>
|
|
845
|
+
<line num="31" count="1" type="stmt"/>
|
|
846
|
+
<line num="34" count="0" type="stmt"/>
|
|
847
|
+
<line num="37" count="1" type="stmt"/>
|
|
848
|
+
<line num="38" count="1" type="stmt"/>
|
|
849
|
+
</file>
|
|
850
|
+
<file name="refund.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/refund.js">
|
|
851
|
+
<metrics statements="19" coveredstatements="19" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
852
|
+
<line num="2" count="1" type="stmt"/>
|
|
853
|
+
<line num="3" count="1" type="stmt"/>
|
|
854
|
+
<line num="4" count="1" type="stmt"/>
|
|
855
|
+
<line num="5" count="1" type="stmt"/>
|
|
856
|
+
<line num="6" count="1" type="stmt"/>
|
|
857
|
+
<line num="19" count="47" type="stmt"/>
|
|
858
|
+
<line num="20" count="47" type="stmt"/>
|
|
859
|
+
<line num="21" count="47" type="stmt"/>
|
|
860
|
+
<line num="22" count="47" type="stmt"/>
|
|
861
|
+
<line num="23" count="47" type="stmt"/>
|
|
862
|
+
<line num="24" count="47" type="stmt"/>
|
|
863
|
+
<line num="25" count="47" type="stmt"/>
|
|
864
|
+
<line num="26" count="47" type="stmt"/>
|
|
865
|
+
<line num="27" count="47" type="stmt"/>
|
|
866
|
+
<line num="28" count="47" type="stmt"/>
|
|
867
|
+
<line num="31" count="1" type="stmt"/>
|
|
868
|
+
<line num="34" count="4" type="stmt"/>
|
|
869
|
+
<line num="37" count="1" type="stmt"/>
|
|
870
|
+
<line num="38" count="1" type="stmt"/>
|
|
871
|
+
</file>
|
|
872
|
+
<file name="shipment-actual-product-variant.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/shipment-actual-product-variant.js">
|
|
873
|
+
<metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
874
|
+
<line num="2" count="1" type="stmt"/>
|
|
875
|
+
<line num="3" count="1" type="stmt"/>
|
|
876
|
+
<line num="4" count="1" type="stmt"/>
|
|
877
|
+
<line num="5" count="1" type="stmt"/>
|
|
878
|
+
<line num="6" count="1" type="stmt"/>
|
|
879
|
+
<line num="7" count="1" type="stmt"/>
|
|
880
|
+
<line num="16" count="6" type="stmt"/>
|
|
881
|
+
<line num="17" count="6" type="stmt"/>
|
|
882
|
+
<line num="18" count="6" type="stmt"/>
|
|
883
|
+
<line num="19" count="6" type="stmt"/>
|
|
884
|
+
<line num="20" count="6" type="stmt"/>
|
|
885
|
+
<line num="21" count="6" type="stmt"/>
|
|
886
|
+
<line num="22" count="6" type="stmt"/>
|
|
887
|
+
<line num="25" count="1" type="stmt"/>
|
|
888
|
+
<line num="28" count="2" type="stmt"/>
|
|
889
|
+
<line num="31" count="1" type="stmt"/>
|
|
890
|
+
<line num="32" count="1" type="stmt"/>
|
|
891
|
+
</file>
|
|
892
|
+
<file name="shipment.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/shipment.js">
|
|
893
|
+
<metrics statements="11" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
894
|
+
<line num="2" count="1" type="stmt"/>
|
|
895
|
+
<line num="3" count="1" type="stmt"/>
|
|
896
|
+
<line num="4" count="1" type="stmt"/>
|
|
897
|
+
<line num="5" count="1" type="stmt"/>
|
|
898
|
+
<line num="12" count="20" type="stmt"/>
|
|
899
|
+
<line num="13" count="20" type="stmt"/>
|
|
900
|
+
<line num="14" count="20" type="stmt"/>
|
|
901
|
+
<line num="17" count="1" type="stmt"/>
|
|
902
|
+
<line num="20" count="1" type="stmt"/>
|
|
903
|
+
<line num="23" count="1" type="stmt"/>
|
|
904
|
+
<line num="24" count="1" type="stmt"/>
|
|
905
|
+
</file>
|
|
906
|
+
<file name="size.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/size.js">
|
|
907
|
+
<metrics statements="11" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
908
|
+
<line num="2" count="1" type="stmt"/>
|
|
909
|
+
<line num="3" count="1" type="stmt"/>
|
|
910
|
+
<line num="4" count="1" type="stmt"/>
|
|
911
|
+
<line num="5" count="1" type="stmt"/>
|
|
912
|
+
<line num="8" count="69" type="stmt"/>
|
|
913
|
+
<line num="9" count="69" type="stmt"/>
|
|
914
|
+
<line num="10" count="69" type="stmt"/>
|
|
915
|
+
<line num="13" count="1" type="stmt"/>
|
|
916
|
+
<line num="16" count="0" type="stmt"/>
|
|
917
|
+
<line num="19" count="1" type="stmt"/>
|
|
918
|
+
<line num="20" count="1" type="stmt"/>
|
|
919
|
+
</file>
|
|
920
|
+
<file name="utm-medium.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/utm-medium.js">
|
|
921
|
+
<metrics statements="11" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
922
|
+
<line num="2" count="1" type="stmt"/>
|
|
923
|
+
<line num="3" count="1" type="stmt"/>
|
|
924
|
+
<line num="4" count="1" type="stmt"/>
|
|
925
|
+
<line num="5" count="1" type="stmt"/>
|
|
926
|
+
<line num="8" count="47" type="stmt"/>
|
|
927
|
+
<line num="9" count="47" type="stmt"/>
|
|
928
|
+
<line num="10" count="47" type="stmt"/>
|
|
929
|
+
<line num="13" count="1" type="stmt"/>
|
|
930
|
+
<line num="16" count="0" type="stmt"/>
|
|
931
|
+
<line num="19" count="1" type="stmt"/>
|
|
932
|
+
<line num="20" count="1" type="stmt"/>
|
|
933
|
+
</file>
|
|
934
|
+
<file name="utm-source.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order-more/models/utm-source.js">
|
|
935
|
+
<metrics statements="12" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
936
|
+
<line num="2" count="1" type="stmt"/>
|
|
937
|
+
<line num="3" count="1" type="stmt"/>
|
|
938
|
+
<line num="4" count="1" type="stmt"/>
|
|
939
|
+
<line num="5" count="1" type="stmt"/>
|
|
940
|
+
<line num="8" count="47" type="stmt"/>
|
|
941
|
+
<line num="9" count="47" type="stmt"/>
|
|
942
|
+
<line num="10" count="47" type="stmt"/>
|
|
943
|
+
<line num="11" count="47" type="stmt"/>
|
|
944
|
+
<line num="14" count="1" type="stmt"/>
|
|
945
|
+
<line num="17" count="0" type="stmt"/>
|
|
946
|
+
<line num="20" count="1" type="stmt"/>
|
|
947
|
+
<line num="21" count="1" type="stmt"/>
|
|
948
|
+
</file>
|
|
949
|
+
</package>
|
|
950
|
+
<package name="dist.test-utils.order.models">
|
|
951
|
+
<metrics statements="115" coveredstatements="112" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="7"/>
|
|
952
|
+
<file name="line-item.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order/models/line-item.js">
|
|
953
|
+
<metrics statements="23" coveredstatements="23" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
954
|
+
<line num="2" count="1" type="stmt"/>
|
|
955
|
+
<line num="3" count="1" type="stmt"/>
|
|
956
|
+
<line num="4" count="1" type="stmt"/>
|
|
957
|
+
<line num="5" count="1" type="stmt"/>
|
|
958
|
+
<line num="6" count="1" type="stmt"/>
|
|
959
|
+
<line num="7" count="1" type="stmt"/>
|
|
960
|
+
<line num="23" count="6" type="stmt"/>
|
|
961
|
+
<line num="24" count="6" type="stmt"/>
|
|
962
|
+
<line num="25" count="6" type="stmt"/>
|
|
963
|
+
<line num="26" count="6" type="stmt"/>
|
|
964
|
+
<line num="27" count="6" type="stmt"/>
|
|
965
|
+
<line num="28" count="6" type="stmt"/>
|
|
966
|
+
<line num="29" count="6" type="stmt"/>
|
|
967
|
+
<line num="30" count="6" type="stmt"/>
|
|
968
|
+
<line num="31" count="6" type="stmt"/>
|
|
969
|
+
<line num="32" count="6" type="stmt"/>
|
|
970
|
+
<line num="33" count="6" type="stmt"/>
|
|
971
|
+
<line num="34" count="6" type="stmt"/>
|
|
972
|
+
<line num="35" count="6" type="stmt"/>
|
|
973
|
+
<line num="38" count="1" type="stmt"/>
|
|
974
|
+
<line num="41" count="1" type="stmt"/>
|
|
975
|
+
<line num="44" count="1" type="stmt"/>
|
|
976
|
+
<line num="45" count="1" type="stmt"/>
|
|
977
|
+
</file>
|
|
978
|
+
<file name="order.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order/models/order.js">
|
|
979
|
+
<metrics statements="40" coveredstatements="40" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
980
|
+
<line num="2" count="1" type="stmt"/>
|
|
981
|
+
<line num="3" count="1" type="stmt"/>
|
|
982
|
+
<line num="4" count="1" type="stmt"/>
|
|
983
|
+
<line num="5" count="1" type="stmt"/>
|
|
984
|
+
<line num="6" count="1" type="stmt"/>
|
|
985
|
+
<line num="34" count="6" type="stmt"/>
|
|
986
|
+
<line num="35" count="6" type="stmt"/>
|
|
987
|
+
<line num="36" count="6" type="stmt"/>
|
|
988
|
+
<line num="37" count="6" type="stmt"/>
|
|
989
|
+
<line num="38" count="6" type="stmt"/>
|
|
990
|
+
<line num="39" count="6" type="stmt"/>
|
|
991
|
+
<line num="40" count="6" type="stmt"/>
|
|
992
|
+
<line num="41" count="6" type="stmt"/>
|
|
993
|
+
<line num="42" count="6" type="stmt"/>
|
|
994
|
+
<line num="43" count="6" type="stmt"/>
|
|
995
|
+
<line num="44" count="6" type="stmt"/>
|
|
996
|
+
<line num="45" count="6" type="stmt"/>
|
|
997
|
+
<line num="46" count="6" type="stmt"/>
|
|
998
|
+
<line num="47" count="6" type="stmt"/>
|
|
999
|
+
<line num="48" count="6" type="stmt"/>
|
|
1000
|
+
<line num="49" count="6" type="stmt"/>
|
|
1001
|
+
<line num="50" count="6" type="stmt"/>
|
|
1002
|
+
<line num="51" count="6" type="stmt"/>
|
|
1003
|
+
<line num="52" count="6" type="stmt"/>
|
|
1004
|
+
<line num="53" count="6" type="stmt"/>
|
|
1005
|
+
<line num="54" count="6" type="stmt"/>
|
|
1006
|
+
<line num="55" count="6" type="stmt"/>
|
|
1007
|
+
<line num="56" count="6" type="stmt"/>
|
|
1008
|
+
<line num="57" count="6" type="stmt"/>
|
|
1009
|
+
<line num="58" count="6" type="stmt"/>
|
|
1010
|
+
<line num="59" count="6" type="stmt"/>
|
|
1011
|
+
<line num="60" count="6" type="stmt"/>
|
|
1012
|
+
<line num="61" count="6" type="stmt"/>
|
|
1013
|
+
<line num="62" count="6" type="stmt"/>
|
|
1014
|
+
<line num="63" count="6" type="stmt"/>
|
|
1015
|
+
<line num="64" count="6" type="stmt"/>
|
|
1016
|
+
<line num="67" count="1" type="stmt"/>
|
|
1017
|
+
<line num="70" count="1" type="stmt"/>
|
|
1018
|
+
<line num="73" count="1" type="stmt"/>
|
|
1019
|
+
<line num="74" count="1" type="stmt"/>
|
|
1020
|
+
</file>
|
|
1021
|
+
<file name="product-variant.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order/models/product-variant.js">
|
|
1022
|
+
<metrics statements="23" coveredstatements="22" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1023
|
+
<line num="2" count="1" type="stmt"/>
|
|
1024
|
+
<line num="3" count="1" type="stmt"/>
|
|
1025
|
+
<line num="4" count="1" type="stmt"/>
|
|
1026
|
+
<line num="5" count="1" type="stmt"/>
|
|
1027
|
+
<line num="6" count="1" type="stmt"/>
|
|
1028
|
+
<line num="23" count="6" type="stmt"/>
|
|
1029
|
+
<line num="24" count="6" type="stmt"/>
|
|
1030
|
+
<line num="25" count="6" type="stmt"/>
|
|
1031
|
+
<line num="26" count="6" type="stmt"/>
|
|
1032
|
+
<line num="27" count="6" type="stmt"/>
|
|
1033
|
+
<line num="28" count="6" type="stmt"/>
|
|
1034
|
+
<line num="29" count="6" type="stmt"/>
|
|
1035
|
+
<line num="30" count="6" type="stmt"/>
|
|
1036
|
+
<line num="31" count="6" type="stmt"/>
|
|
1037
|
+
<line num="32" count="6" type="stmt"/>
|
|
1038
|
+
<line num="33" count="6" type="stmt"/>
|
|
1039
|
+
<line num="34" count="6" type="stmt"/>
|
|
1040
|
+
<line num="35" count="6" type="stmt"/>
|
|
1041
|
+
<line num="36" count="6" type="stmt"/>
|
|
1042
|
+
<line num="39" count="1" type="stmt"/>
|
|
1043
|
+
<line num="42" count="0" type="stmt"/>
|
|
1044
|
+
<line num="45" count="1" type="stmt"/>
|
|
1045
|
+
<line num="46" count="1" type="stmt"/>
|
|
1046
|
+
</file>
|
|
1047
|
+
<file name="product.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order/models/product.js">
|
|
1048
|
+
<metrics statements="17" coveredstatements="16" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1049
|
+
<line num="2" count="1" type="stmt"/>
|
|
1050
|
+
<line num="3" count="1" type="stmt"/>
|
|
1051
|
+
<line num="4" count="1" type="stmt"/>
|
|
1052
|
+
<line num="5" count="1" type="stmt"/>
|
|
1053
|
+
<line num="18" count="6" type="stmt"/>
|
|
1054
|
+
<line num="19" count="6" type="stmt"/>
|
|
1055
|
+
<line num="20" count="6" type="stmt"/>
|
|
1056
|
+
<line num="21" count="6" type="stmt"/>
|
|
1057
|
+
<line num="22" count="6" type="stmt"/>
|
|
1058
|
+
<line num="23" count="6" type="stmt"/>
|
|
1059
|
+
<line num="24" count="6" type="stmt"/>
|
|
1060
|
+
<line num="25" count="6" type="stmt"/>
|
|
1061
|
+
<line num="26" count="6" type="stmt"/>
|
|
1062
|
+
<line num="29" count="1" type="stmt"/>
|
|
1063
|
+
<line num="32" count="0" type="stmt"/>
|
|
1064
|
+
<line num="35" count="1" type="stmt"/>
|
|
1065
|
+
<line num="36" count="1" type="stmt"/>
|
|
1066
|
+
</file>
|
|
1067
|
+
<file name="utm-source.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/order/models/utm-source.js">
|
|
1068
|
+
<metrics statements="12" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1069
|
+
<line num="2" count="1" type="stmt"/>
|
|
1070
|
+
<line num="3" count="1" type="stmt"/>
|
|
1071
|
+
<line num="4" count="1" type="stmt"/>
|
|
1072
|
+
<line num="5" count="1" type="stmt"/>
|
|
1073
|
+
<line num="8" count="6" type="stmt"/>
|
|
1074
|
+
<line num="9" count="6" type="stmt"/>
|
|
1075
|
+
<line num="10" count="6" type="stmt"/>
|
|
1076
|
+
<line num="11" count="6" type="stmt"/>
|
|
1077
|
+
<line num="14" count="1" type="stmt"/>
|
|
1078
|
+
<line num="17" count="0" type="stmt"/>
|
|
1079
|
+
<line num="20" count="1" type="stmt"/>
|
|
1080
|
+
<line num="21" count="1" type="stmt"/>
|
|
1081
|
+
</file>
|
|
1082
|
+
</package>
|
|
1083
|
+
<package name="dist.test-utils.six">
|
|
1084
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1085
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/six/orm.js">
|
|
1086
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1087
|
+
<line num="2" count="1" type="stmt"/>
|
|
1088
|
+
<line num="3" count="1" type="stmt"/>
|
|
1089
|
+
<line num="4" count="1" type="stmt"/>
|
|
1090
|
+
<line num="5" count="1" type="stmt"/>
|
|
1091
|
+
<line num="6" count="1" type="stmt"/>
|
|
1092
|
+
<line num="7" count="1" type="stmt"/>
|
|
1093
|
+
<line num="8" count="1" type="stmt"/>
|
|
1094
|
+
<line num="9" count="1" type="stmt"/>
|
|
1095
|
+
<line num="10" count="1" type="stmt"/>
|
|
1096
|
+
<line num="19" count="1" type="stmt"/>
|
|
1097
|
+
</file>
|
|
1098
|
+
</package>
|
|
1099
|
+
<package name="dist.test-utils.six.models">
|
|
1100
|
+
<metrics statements="58" coveredstatements="55" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="7"/>
|
|
1101
|
+
<file name="customer.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/six/models/customer.js">
|
|
1102
|
+
<metrics statements="10" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1103
|
+
<line num="2" count="1" type="stmt"/>
|
|
1104
|
+
<line num="3" count="1" type="stmt"/>
|
|
1105
|
+
<line num="4" count="1" type="stmt"/>
|
|
1106
|
+
<line num="5" count="1" type="stmt"/>
|
|
1107
|
+
<line num="8" count="2" type="stmt"/>
|
|
1108
|
+
<line num="9" count="2" type="stmt"/>
|
|
1109
|
+
<line num="12" count="1" type="stmt"/>
|
|
1110
|
+
<line num="15" count="0" type="stmt"/>
|
|
1111
|
+
<line num="18" count="1" type="stmt"/>
|
|
1112
|
+
<line num="19" count="1" type="stmt"/>
|
|
1113
|
+
</file>
|
|
1114
|
+
<file name="line-item.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/six/models/line-item.js">
|
|
1115
|
+
<metrics statements="12" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1116
|
+
<line num="2" count="1" type="stmt"/>
|
|
1117
|
+
<line num="3" count="1" type="stmt"/>
|
|
1118
|
+
<line num="4" count="1" type="stmt"/>
|
|
1119
|
+
<line num="5" count="1" type="stmt"/>
|
|
1120
|
+
<line num="6" count="1" type="stmt"/>
|
|
1121
|
+
<line num="12" count="2" type="stmt"/>
|
|
1122
|
+
<line num="13" count="2" type="stmt"/>
|
|
1123
|
+
<line num="14" count="2" type="stmt"/>
|
|
1124
|
+
<line num="17" count="1" type="stmt"/>
|
|
1125
|
+
<line num="20" count="0" type="stmt"/>
|
|
1126
|
+
<line num="23" count="1" type="stmt"/>
|
|
1127
|
+
<line num="24" count="1" type="stmt"/>
|
|
1128
|
+
</file>
|
|
1129
|
+
<file name="order.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/six/models/order.js">
|
|
1130
|
+
<metrics statements="12" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1131
|
+
<line num="2" count="1" type="stmt"/>
|
|
1132
|
+
<line num="3" count="1" type="stmt"/>
|
|
1133
|
+
<line num="4" count="1" type="stmt"/>
|
|
1134
|
+
<line num="5" count="1" type="stmt"/>
|
|
1135
|
+
<line num="6" count="1" type="stmt"/>
|
|
1136
|
+
<line num="12" count="2" type="stmt"/>
|
|
1137
|
+
<line num="13" count="2" type="stmt"/>
|
|
1138
|
+
<line num="14" count="2" type="stmt"/>
|
|
1139
|
+
<line num="17" count="1" type="stmt"/>
|
|
1140
|
+
<line num="20" count="0" type="stmt"/>
|
|
1141
|
+
<line num="23" count="1" type="stmt"/>
|
|
1142
|
+
<line num="24" count="1" type="stmt"/>
|
|
1143
|
+
</file>
|
|
1144
|
+
<file name="parcel-line-item.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/six/models/parcel-line-item.js">
|
|
1145
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1146
|
+
<line num="2" count="1" type="stmt"/>
|
|
1147
|
+
<line num="3" count="1" type="stmt"/>
|
|
1148
|
+
<line num="4" count="1" type="stmt"/>
|
|
1149
|
+
<line num="5" count="1" type="stmt"/>
|
|
1150
|
+
<line num="6" count="1" type="stmt"/>
|
|
1151
|
+
<line num="7" count="1" type="stmt"/>
|
|
1152
|
+
<line num="14" count="2" type="stmt"/>
|
|
1153
|
+
<line num="15" count="2" type="stmt"/>
|
|
1154
|
+
<line num="16" count="2" type="stmt"/>
|
|
1155
|
+
<line num="17" count="2" type="stmt"/>
|
|
1156
|
+
<line num="18" count="2" type="stmt"/>
|
|
1157
|
+
<line num="21" count="1" type="stmt"/>
|
|
1158
|
+
<line num="24" count="1" type="stmt"/>
|
|
1159
|
+
<line num="27" count="1" type="stmt"/>
|
|
1160
|
+
<line num="28" count="1" type="stmt"/>
|
|
1161
|
+
</file>
|
|
1162
|
+
<file name="parcel.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/six/models/parcel.js">
|
|
1163
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1164
|
+
<line num="2" count="1" type="stmt"/>
|
|
1165
|
+
<line num="3" count="1" type="stmt"/>
|
|
1166
|
+
<line num="4" count="1" type="stmt"/>
|
|
1167
|
+
<line num="5" count="1" type="stmt"/>
|
|
1168
|
+
<line num="8" count="2" type="stmt"/>
|
|
1169
|
+
<line num="11" count="1" type="stmt"/>
|
|
1170
|
+
<line num="14" count="1" type="stmt"/>
|
|
1171
|
+
<line num="17" count="1" type="stmt"/>
|
|
1172
|
+
<line num="18" count="1" type="stmt"/>
|
|
1173
|
+
</file>
|
|
1174
|
+
</package>
|
|
1175
|
+
<package name="dist.test-utils.thirteen">
|
|
1176
|
+
<metrics statements="13" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1177
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/orm.js">
|
|
1178
|
+
<metrics statements="13" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1179
|
+
<line num="2" count="1" type="stmt"/>
|
|
1180
|
+
<line num="3" count="1" type="stmt"/>
|
|
1181
|
+
<line num="4" count="1" type="stmt"/>
|
|
1182
|
+
<line num="5" count="1" type="stmt"/>
|
|
1183
|
+
<line num="6" count="1" type="stmt"/>
|
|
1184
|
+
<line num="7" count="1" type="stmt"/>
|
|
1185
|
+
<line num="8" count="1" type="stmt"/>
|
|
1186
|
+
<line num="9" count="1" type="stmt"/>
|
|
1187
|
+
<line num="10" count="1" type="stmt"/>
|
|
1188
|
+
<line num="11" count="1" type="stmt"/>
|
|
1189
|
+
<line num="12" count="1" type="stmt"/>
|
|
1190
|
+
<line num="13" count="1" type="stmt"/>
|
|
1191
|
+
<line num="25" count="1" type="stmt"/>
|
|
1192
|
+
</file>
|
|
1193
|
+
</package>
|
|
1194
|
+
<package name="dist.test-utils.thirteen.models">
|
|
1195
|
+
<metrics statements="96" coveredstatements="91" conditionals="0" coveredconditionals="0" methods="16" coveredmethods="11"/>
|
|
1196
|
+
<file name="audience.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/audience.js">
|
|
1197
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1198
|
+
<line num="2" count="1" type="stmt"/>
|
|
1199
|
+
<line num="3" count="1" type="stmt"/>
|
|
1200
|
+
<line num="4" count="1" type="stmt"/>
|
|
1201
|
+
<line num="5" count="1" type="stmt"/>
|
|
1202
|
+
<line num="8" count="4" type="stmt"/>
|
|
1203
|
+
<line num="11" count="1" type="stmt"/>
|
|
1204
|
+
<line num="14" count="0" type="stmt"/>
|
|
1205
|
+
<line num="17" count="1" type="stmt"/>
|
|
1206
|
+
<line num="18" count="1" type="stmt"/>
|
|
1207
|
+
</file>
|
|
1208
|
+
<file name="brand.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/brand.js">
|
|
1209
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1210
|
+
<line num="2" count="1" type="stmt"/>
|
|
1211
|
+
<line num="3" count="1" type="stmt"/>
|
|
1212
|
+
<line num="4" count="1" type="stmt"/>
|
|
1213
|
+
<line num="5" count="1" type="stmt"/>
|
|
1214
|
+
<line num="8" count="4" type="stmt"/>
|
|
1215
|
+
<line num="11" count="1" type="stmt"/>
|
|
1216
|
+
<line num="14" count="0" type="stmt"/>
|
|
1217
|
+
<line num="17" count="1" type="stmt"/>
|
|
1218
|
+
<line num="18" count="1" type="stmt"/>
|
|
1219
|
+
</file>
|
|
1220
|
+
<file name="category.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/category.js">
|
|
1221
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1222
|
+
<line num="2" count="1" type="stmt"/>
|
|
1223
|
+
<line num="3" count="1" type="stmt"/>
|
|
1224
|
+
<line num="4" count="1" type="stmt"/>
|
|
1225
|
+
<line num="5" count="1" type="stmt"/>
|
|
1226
|
+
<line num="8" count="4" type="stmt"/>
|
|
1227
|
+
<line num="11" count="1" type="stmt"/>
|
|
1228
|
+
<line num="14" count="0" type="stmt"/>
|
|
1229
|
+
<line num="17" count="1" type="stmt"/>
|
|
1230
|
+
<line num="18" count="1" type="stmt"/>
|
|
1231
|
+
</file>
|
|
1232
|
+
<file name="member.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/member.js">
|
|
1233
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1234
|
+
<line num="2" count="1" type="stmt"/>
|
|
1235
|
+
<line num="3" count="1" type="stmt"/>
|
|
1236
|
+
<line num="4" count="1" type="stmt"/>
|
|
1237
|
+
<line num="5" count="1" type="stmt"/>
|
|
1238
|
+
<line num="8" count="4" type="stmt"/>
|
|
1239
|
+
<line num="11" count="1" type="stmt"/>
|
|
1240
|
+
<line num="14" count="1" type="stmt"/>
|
|
1241
|
+
<line num="17" count="1" type="stmt"/>
|
|
1242
|
+
<line num="18" count="1" type="stmt"/>
|
|
1243
|
+
</file>
|
|
1244
|
+
<file name="passion.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/passion.js">
|
|
1245
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1246
|
+
<line num="2" count="1" type="stmt"/>
|
|
1247
|
+
<line num="3" count="1" type="stmt"/>
|
|
1248
|
+
<line num="4" count="1" type="stmt"/>
|
|
1249
|
+
<line num="5" count="1" type="stmt"/>
|
|
1250
|
+
<line num="8" count="4" type="stmt"/>
|
|
1251
|
+
<line num="11" count="1" type="stmt"/>
|
|
1252
|
+
<line num="14" count="0" type="stmt"/>
|
|
1253
|
+
<line num="17" count="1" type="stmt"/>
|
|
1254
|
+
<line num="18" count="1" type="stmt"/>
|
|
1255
|
+
</file>
|
|
1256
|
+
<file name="product.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/product.js">
|
|
1257
|
+
<metrics statements="12" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1258
|
+
<line num="2" count="1" type="stmt"/>
|
|
1259
|
+
<line num="3" count="1" type="stmt"/>
|
|
1260
|
+
<line num="4" count="1" type="stmt"/>
|
|
1261
|
+
<line num="5" count="1" type="stmt"/>
|
|
1262
|
+
<line num="6" count="1" type="stmt"/>
|
|
1263
|
+
<line num="12" count="4" type="stmt"/>
|
|
1264
|
+
<line num="13" count="4" type="stmt"/>
|
|
1265
|
+
<line num="14" count="4" type="stmt"/>
|
|
1266
|
+
<line num="17" count="1" type="stmt"/>
|
|
1267
|
+
<line num="20" count="0" type="stmt"/>
|
|
1268
|
+
<line num="23" count="1" type="stmt"/>
|
|
1269
|
+
<line num="24" count="1" type="stmt"/>
|
|
1270
|
+
</file>
|
|
1271
|
+
<file name="recommendation-audience.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/recommendation-audience.js">
|
|
1272
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1273
|
+
<line num="2" count="1" type="stmt"/>
|
|
1274
|
+
<line num="3" count="1" type="stmt"/>
|
|
1275
|
+
<line num="4" count="1" type="stmt"/>
|
|
1276
|
+
<line num="5" count="1" type="stmt"/>
|
|
1277
|
+
<line num="6" count="1" type="stmt"/>
|
|
1278
|
+
<line num="7" count="1" type="stmt"/>
|
|
1279
|
+
<line num="14" count="4" type="stmt"/>
|
|
1280
|
+
<line num="15" count="4" type="stmt"/>
|
|
1281
|
+
<line num="16" count="4" type="stmt"/>
|
|
1282
|
+
<line num="17" count="4" type="stmt"/>
|
|
1283
|
+
<line num="18" count="4" type="stmt"/>
|
|
1284
|
+
<line num="21" count="1" type="stmt"/>
|
|
1285
|
+
<line num="24" count="4" type="stmt"/>
|
|
1286
|
+
<line num="27" count="1" type="stmt"/>
|
|
1287
|
+
<line num="28" count="1" type="stmt"/>
|
|
1288
|
+
</file>
|
|
1289
|
+
<file name="recommendation.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/thirteen/models/recommendation.js">
|
|
1290
|
+
<metrics statements="24" coveredstatements="24" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1291
|
+
<line num="2" count="1" type="stmt"/>
|
|
1292
|
+
<line num="3" count="1" type="stmt"/>
|
|
1293
|
+
<line num="4" count="1" type="stmt"/>
|
|
1294
|
+
<line num="5" count="1" type="stmt"/>
|
|
1295
|
+
<line num="6" count="1" type="stmt"/>
|
|
1296
|
+
<line num="7" count="1" type="stmt"/>
|
|
1297
|
+
<line num="8" count="1" type="stmt"/>
|
|
1298
|
+
<line num="9" count="1" type="stmt"/>
|
|
1299
|
+
<line num="10" count="1" type="stmt"/>
|
|
1300
|
+
<line num="20" count="4" type="stmt"/>
|
|
1301
|
+
<line num="21" count="4" type="stmt"/>
|
|
1302
|
+
<line num="22" count="4" type="stmt"/>
|
|
1303
|
+
<line num="23" count="4" type="stmt"/>
|
|
1304
|
+
<line num="24" count="4" type="stmt"/>
|
|
1305
|
+
<line num="25" count="4" type="stmt"/>
|
|
1306
|
+
<line num="26" count="4" type="stmt"/>
|
|
1307
|
+
<line num="27" count="4" type="stmt"/>
|
|
1308
|
+
<line num="28" count="4" type="stmt"/>
|
|
1309
|
+
<line num="29" count="4" type="stmt"/>
|
|
1310
|
+
<line num="30" count="4" type="stmt"/>
|
|
1311
|
+
<line num="33" count="1" type="stmt"/>
|
|
1312
|
+
<line num="36" count="1" type="stmt"/>
|
|
1313
|
+
<line num="39" count="1" type="stmt"/>
|
|
1314
|
+
<line num="40" count="1" type="stmt"/>
|
|
1315
|
+
</file>
|
|
1316
|
+
</package>
|
|
1317
|
+
<package name="dist.test-utils.three">
|
|
1318
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1319
|
+
<file name="results.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/three/results.js">
|
|
1320
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1321
|
+
<line num="1" count="1" type="stmt"/>
|
|
1322
|
+
</file>
|
|
1323
|
+
</package>
|
|
1324
|
+
<package name="dist.test-utils.twelve">
|
|
1325
|
+
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1326
|
+
<file name="orm.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/twelve/orm.js">
|
|
1327
|
+
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1328
|
+
<line num="2" count="1" type="stmt"/>
|
|
1329
|
+
<line num="3" count="1" type="stmt"/>
|
|
1330
|
+
<line num="4" count="1" type="stmt"/>
|
|
1331
|
+
<line num="5" count="1" type="stmt"/>
|
|
1332
|
+
<line num="6" count="1" type="stmt"/>
|
|
1333
|
+
<line num="7" count="1" type="stmt"/>
|
|
1334
|
+
<line num="10" count="1" type="stmt"/>
|
|
1335
|
+
</file>
|
|
1336
|
+
</package>
|
|
1337
|
+
<package name="dist.test-utils.twelve.models">
|
|
1338
|
+
<metrics statements="23" coveredstatements="22" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="3"/>
|
|
1339
|
+
<file name="member.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/twelve/models/member.js">
|
|
1340
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1341
|
+
<line num="2" count="1" type="stmt"/>
|
|
1342
|
+
<line num="3" count="1" type="stmt"/>
|
|
1343
|
+
<line num="4" count="1" type="stmt"/>
|
|
1344
|
+
<line num="5" count="1" type="stmt"/>
|
|
1345
|
+
<line num="8" count="1" type="stmt"/>
|
|
1346
|
+
<line num="11" count="1" type="stmt"/>
|
|
1347
|
+
<line num="14" count="0" type="stmt"/>
|
|
1348
|
+
<line num="17" count="1" type="stmt"/>
|
|
1349
|
+
<line num="18" count="1" type="stmt"/>
|
|
1350
|
+
</file>
|
|
1351
|
+
<file name="prompt.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/twelve/models/prompt.js">
|
|
1352
|
+
<metrics statements="14" coveredstatements="14" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1353
|
+
<line num="2" count="1" type="stmt"/>
|
|
1354
|
+
<line num="3" count="1" type="stmt"/>
|
|
1355
|
+
<line num="4" count="1" type="stmt"/>
|
|
1356
|
+
<line num="5" count="1" type="stmt"/>
|
|
1357
|
+
<line num="6" count="1" type="stmt"/>
|
|
1358
|
+
<line num="13" count="1" type="stmt"/>
|
|
1359
|
+
<line num="14" count="1" type="stmt"/>
|
|
1360
|
+
<line num="15" count="1" type="stmt"/>
|
|
1361
|
+
<line num="16" count="1" type="stmt"/>
|
|
1362
|
+
<line num="17" count="1" type="stmt"/>
|
|
1363
|
+
<line num="20" count="1" type="stmt"/>
|
|
1364
|
+
<line num="23" count="1" type="stmt"/>
|
|
1365
|
+
<line num="26" count="1" type="stmt"/>
|
|
1366
|
+
<line num="27" count="1" type="stmt"/>
|
|
1367
|
+
</file>
|
|
1368
|
+
</package>
|
|
1369
|
+
<package name="dist.test-utils.two">
|
|
1370
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1371
|
+
<file name="results.js" path="/Users/craigmartin/projects/pure-orm/dist/test-utils/two/results.js">
|
|
1372
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1373
|
+
<line num="1" count="1" type="stmt"/>
|
|
1374
|
+
</file>
|
|
1375
|
+
</package>
|
|
1376
|
+
<package name="src">
|
|
1377
|
+
<metrics statements="266" coveredstatements="165" conditionals="108" coveredconditionals="62" methods="93" coveredmethods="43"/>
|
|
1378
|
+
<file name="factory.ts" path="/Users/craigmartin/projects/pure-orm/src/factory.ts">
|
|
1379
|
+
<metrics statements="266" coveredstatements="165" conditionals="108" coveredconditionals="62" methods="93" coveredmethods="43"/>
|
|
1380
|
+
<line num="1" count="1" type="stmt"/>
|
|
1381
|
+
<line num="63" count="1" type="stmt"/>
|
|
1382
|
+
<line num="64" count="8" type="stmt"/>
|
|
1383
|
+
<line num="66" count="50" type="stmt"/>
|
|
1384
|
+
<line num="67" count="50" type="cond" truecount="2" falsecount="0"/>
|
|
1385
|
+
<line num="69" count="50" type="cond" truecount="2" falsecount="0"/>
|
|
1386
|
+
<line num="70" count="50" type="stmt"/>
|
|
1387
|
+
<line num="71" count="271" type="cond" truecount="2" falsecount="0"/>
|
|
1388
|
+
<line num="72" count="226" type="stmt"/>
|
|
1389
|
+
<line num="78" count="45" type="stmt"/>
|
|
1390
|
+
<line num="85" count="50" type="stmt"/>
|
|
1391
|
+
<line num="86" count="271" type="stmt"/>
|
|
1392
|
+
<line num="88" count="271" type="stmt"/>
|
|
1393
|
+
<line num="89" count="50" type="stmt"/>
|
|
1394
|
+
<line num="90" count="271" type="stmt"/>
|
|
1395
|
+
<line num="92" count="50" type="stmt"/>
|
|
1396
|
+
<line num="93" count="50" type="stmt"/>
|
|
1397
|
+
<line num="95" count="50" type="stmt"/>
|
|
1398
|
+
<line num="96" count="271" type="stmt"/>
|
|
1399
|
+
<line num="98" count="50" type="stmt"/>
|
|
1400
|
+
<line num="99" count="50" type="cond" truecount="1" falsecount="1"/>
|
|
1401
|
+
<line num="102" count="50" type="stmt"/>
|
|
1402
|
+
<line num="103" count="2379" type="stmt"/>
|
|
1403
|
+
<line num="104" count="2379" type="stmt"/>
|
|
1404
|
+
<line num="108" count="50" type="stmt"/>
|
|
1405
|
+
<line num="109" count="271" type="stmt"/>
|
|
1406
|
+
<line num="112" count="45" type="stmt"/>
|
|
1407
|
+
<line num="118" count="50" type="stmt"/>
|
|
1408
|
+
<line num="121" count="271" type="stmt"/>
|
|
1409
|
+
<line num="125" count="50" type="stmt"/>
|
|
1410
|
+
<line num="143" count="8" type="stmt"/>
|
|
1411
|
+
<line num="144" count="10197" type="stmt"/>
|
|
1412
|
+
<line num="145" count="1104" type="cond" truecount="1" falsecount="1"/>
|
|
1413
|
+
<line num="146" count="0" type="stmt"/>
|
|
1414
|
+
<line num="148" count="1104" type="stmt"/>
|
|
1415
|
+
<line num="151" count="8" type="stmt"/>
|
|
1416
|
+
<line num="152" count="404341" type="stmt"/>
|
|
1417
|
+
<line num="153" count="38207" type="cond" truecount="1" falsecount="1"/>
|
|
1418
|
+
<line num="154" count="0" type="stmt"/>
|
|
1419
|
+
<line num="156" count="38207" type="stmt"/>
|
|
1420
|
+
<line num="159" count="8" type="stmt"/>
|
|
1421
|
+
<line num="160" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1422
|
+
<line num="161" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1423
|
+
<line num="162" count="0" type="stmt"/>
|
|
1424
|
+
<line num="165" count="0" type="stmt"/>
|
|
1425
|
+
<line num="177" count="8" type="stmt"/>
|
|
1426
|
+
<line num="178" count="111" type="stmt"/>
|
|
1427
|
+
<line num="179" count="26" type="stmt"/>
|
|
1428
|
+
<line num="180" count="26" type="stmt"/>
|
|
1429
|
+
<line num="181" count="1104" type="stmt"/>
|
|
1430
|
+
<line num="183" count="26" type="stmt"/>
|
|
1431
|
+
<line num="185" count="26" type="stmt"/>
|
|
1432
|
+
<line num="188" count="26" type="stmt"/>
|
|
1433
|
+
<line num="189" count="111" type="stmt"/>
|
|
1434
|
+
<line num="190" count="993" type="stmt"/>
|
|
1435
|
+
<line num="192" count="18827" type="cond" truecount="2" falsecount="0"/>
|
|
1436
|
+
<line num="196" count="993" type="cond" truecount="2" falsecount="0"/>
|
|
1437
|
+
<line num="197" count="993" type="stmt"/>
|
|
1438
|
+
<line num="198" count="993" type="stmt"/>
|
|
1439
|
+
<line num="199" count="27484" type="stmt"/>
|
|
1440
|
+
<line num="201" count="26688" type="cond" truecount="2" falsecount="0"/>
|
|
1441
|
+
<line num="203" count="26688" type="stmt"/>
|
|
1442
|
+
<line num="204" count="27484" type="cond" truecount="2" falsecount="0"/>
|
|
1443
|
+
<line num="205" count="26812" type="stmt"/>
|
|
1444
|
+
<line num="207" count="672" type="stmt"/>
|
|
1445
|
+
<line num="208" count="673" type="stmt"/>
|
|
1446
|
+
<line num="211" count="673" type="cond" truecount="2" falsecount="0"/>
|
|
1447
|
+
<line num="212" count="646" type="stmt"/>
|
|
1448
|
+
<line num="215" count="26" type="stmt"/>
|
|
1449
|
+
<line num="220" count="993" type="cond" truecount="2" falsecount="0"/>
|
|
1450
|
+
<line num="221" count="11737" type="cond" truecount="2" falsecount="0"/>
|
|
1451
|
+
<line num="222" count="9876" type="stmt"/>
|
|
1452
|
+
<line num="224" count="1861" type="stmt"/>
|
|
1453
|
+
<line num="225" count="48580" type="stmt"/>
|
|
1454
|
+
<line num="227" count="1861" type="cond" truecount="2" falsecount="0"/>
|
|
1455
|
+
<line num="228" count="963" type="stmt"/>
|
|
1456
|
+
<line num="230" count="898" type="stmt"/>
|
|
1457
|
+
<line num="232" count="993" type="stmt"/>
|
|
1458
|
+
<line num="236" count="993" type="stmt"/>
|
|
1459
|
+
<line num="237" count="5858" type="stmt"/>
|
|
1460
|
+
<line num="240" count="5858" type="cond" truecount="2" falsecount="0"/>
|
|
1461
|
+
<line num="241" count="5526" type="stmt"/>
|
|
1462
|
+
<line num="243" count="332" type="stmt"/>
|
|
1463
|
+
<line num="246" count="332" type="stmt"/>
|
|
1464
|
+
<line num="248" count="993" type="cond" truecount="2" falsecount="0"/>
|
|
1465
|
+
<line num="249" count="538" type="cond" truecount="4" falsecount="0"/>
|
|
1466
|
+
<line num="250" count="75" type="stmt"/>
|
|
1467
|
+
<line num="251" count="75" type="stmt"/>
|
|
1468
|
+
<line num="258" count="463" type="cond" truecount="1" falsecount="1"/>
|
|
1469
|
+
<line num="260" count="463" type="stmt"/>
|
|
1470
|
+
<line num="264" count="463" type="cond" truecount="4" falsecount="0"/>
|
|
1471
|
+
<line num="265" count="61" type="stmt"/>
|
|
1472
|
+
<line num="266" count="61" type="stmt"/>
|
|
1473
|
+
<line num="270" count="857" type="cond" truecount="2" falsecount="0"/>
|
|
1474
|
+
<line num="271" count="585" type="stmt"/>
|
|
1475
|
+
<line num="272" count="272" type="cond" truecount="2" falsecount="0"/>
|
|
1476
|
+
<line num="274" count="151" type="stmt"/>
|
|
1477
|
+
<line num="275" count="151" type="cond" truecount="2" falsecount="0"/>
|
|
1478
|
+
<line num="276" count="85" type="stmt"/>
|
|
1479
|
+
<line num="278" count="66" type="stmt"/>
|
|
1480
|
+
<line num="279" count="66" type="stmt"/>
|
|
1481
|
+
<line num="285" count="121" type="cond" truecount="1" falsecount="1"/>
|
|
1482
|
+
<line num="287" count="121" type="stmt"/>
|
|
1483
|
+
<line num="289" count="0" type="stmt"/>
|
|
1484
|
+
<line num="295" count="736" type="stmt"/>
|
|
1485
|
+
<line num="299" count="26" type="stmt"/>
|
|
1486
|
+
<line num="321" count="8" type="stmt"/>
|
|
1487
|
+
<line num="324" count="13" type="stmt"/>
|
|
1488
|
+
<line num="325" count="13" type="stmt"/>
|
|
1489
|
+
<line num="326" count="13" type="stmt"/>
|
|
1490
|
+
<line num="327" count="111" type="stmt"/>
|
|
1491
|
+
<line num="330" count="111" type="stmt"/>
|
|
1492
|
+
<line num="333" count="111" type="cond" truecount="2" falsecount="0"/>
|
|
1493
|
+
<line num="334" count="85" type="stmt"/>
|
|
1494
|
+
<line num="336" count="26" type="stmt"/>
|
|
1495
|
+
<line num="338" count="111" type="stmt"/>
|
|
1496
|
+
<line num="340" count="13" type="stmt"/>
|
|
1497
|
+
<line num="343" count="8" type="stmt"/>
|
|
1498
|
+
<line num="344" count="111" type="stmt"/>
|
|
1499
|
+
<line num="345" count="1104" type="stmt"/>
|
|
1500
|
+
<line num="346" count="1104" type="stmt"/>
|
|
1501
|
+
<line num="349" count="3703" type="stmt"/>
|
|
1502
|
+
<line num="350" count="3703" type="cond" truecount="1" falsecount="1"/>
|
|
1503
|
+
<line num="351" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1504
|
+
<line num="352" count="0" type="stmt"/>
|
|
1505
|
+
<line num="354" count="0" type="stmt"/>
|
|
1506
|
+
<line num="359" count="3703" type="stmt"/>
|
|
1507
|
+
<line num="360" count="3703" type="stmt"/>
|
|
1508
|
+
<line num="364" count="1104" type="stmt"/>
|
|
1509
|
+
<line num="372" count="8" type="stmt"/>
|
|
1510
|
+
<line num="373" count="111" type="stmt"/>
|
|
1511
|
+
<line num="374" count="3703" type="stmt"/>
|
|
1512
|
+
<line num="375" count="3703" type="stmt"/>
|
|
1513
|
+
<line num="376" count="3703" type="cond" truecount="2" falsecount="0"/>
|
|
1514
|
+
<line num="377" count="3703" type="stmt"/>
|
|
1515
|
+
<line num="378" count="3703" type="stmt"/>
|
|
1516
|
+
<line num="382" count="8" type="stmt"/>
|
|
1517
|
+
<line num="385" count="13" type="cond" truecount="1" falsecount="1"/>
|
|
1518
|
+
<line num="386" count="13" type="stmt"/>
|
|
1519
|
+
<line num="387" count="13" type="stmt"/>
|
|
1520
|
+
<line num="388" count="13" type="stmt"/>
|
|
1521
|
+
<line num="389" count="13" type="stmt"/>
|
|
1522
|
+
<line num="390" count="26" type="stmt"/>
|
|
1523
|
+
<line num="391" count="13" type="stmt"/>
|
|
1524
|
+
<line num="392" count="13" type="cond" truecount="1" falsecount="1"/>
|
|
1525
|
+
<line num="395" count="8" type="stmt"/>
|
|
1526
|
+
<line num="396" count="4" type="stmt"/>
|
|
1527
|
+
<line num="397" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
1528
|
+
<line num="398" count="0" type="stmt"/>
|
|
1529
|
+
<line num="400" count="4" type="cond" truecount="3" falsecount="1"/>
|
|
1530
|
+
<line num="401" count="0" type="stmt"/>
|
|
1531
|
+
<line num="402" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
1532
|
+
<line num="403" count="0" type="stmt"/>
|
|
1533
|
+
<line num="405" count="4" type="stmt"/>
|
|
1534
|
+
<line num="408" count="8" type="stmt"/>
|
|
1535
|
+
<line num="411" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1536
|
+
<line num="412" count="0" type="stmt"/>
|
|
1537
|
+
<line num="414" count="0" type="stmt"/>
|
|
1538
|
+
<line num="415" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1539
|
+
<line num="416" count="0" type="stmt"/>
|
|
1540
|
+
<line num="418" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1541
|
+
<line num="421" count="8" type="stmt"/>
|
|
1542
|
+
<line num="424" count="0" type="stmt"/>
|
|
1543
|
+
<line num="425" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1544
|
+
<line num="426" count="0" type="stmt"/>
|
|
1545
|
+
<line num="428" count="0" type="stmt"/>
|
|
1546
|
+
<line num="431" count="8" type="stmt"/>
|
|
1547
|
+
<line num="432" count="0" type="stmt"/>
|
|
1548
|
+
<line num="435" count="0" type="stmt"/>
|
|
1549
|
+
<line num="439" count="0" type="stmt"/>
|
|
1550
|
+
<line num="441" count="0" type="stmt"/>
|
|
1551
|
+
<line num="443" count="0" type="stmt"/>
|
|
1552
|
+
<line num="445" count="0" type="stmt"/>
|
|
1553
|
+
<line num="446" count="0" type="stmt"/>
|
|
1554
|
+
<line num="447" count="0" type="stmt"/>
|
|
1555
|
+
<line num="449" count="0" type="stmt"/>
|
|
1556
|
+
<line num="452" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
1557
|
+
<line num="453" count="0" type="stmt"/>
|
|
1558
|
+
<line num="456" count="0" type="stmt"/>
|
|
1559
|
+
<line num="461" count="0" type="stmt"/>
|
|
1560
|
+
<line num="463" count="0" type="stmt"/>
|
|
1561
|
+
<line num="464" count="0" type="stmt"/>
|
|
1562
|
+
<line num="465" count="0" type="stmt"/>
|
|
1563
|
+
<line num="467" count="0" type="stmt"/>
|
|
1564
|
+
<line num="469" count="0" type="stmt"/>
|
|
1565
|
+
<line num="470" count="0" type="stmt"/>
|
|
1566
|
+
<line num="471" count="0" type="stmt"/>
|
|
1567
|
+
<line num="474" count="8" type="stmt"/>
|
|
1568
|
+
<line num="475" count="0" type="stmt"/>
|
|
1569
|
+
<line num="477" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1570
|
+
<line num="483" count="0" type="stmt"/>
|
|
1571
|
+
<line num="484" count="0" type="stmt"/>
|
|
1572
|
+
<line num="486" count="0" type="stmt"/>
|
|
1573
|
+
<line num="488" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1574
|
+
<line num="492" count="0" type="stmt"/>
|
|
1575
|
+
<line num="493" count="0" type="stmt"/>
|
|
1576
|
+
<line num="498" count="8" type="stmt"/>
|
|
1577
|
+
<line num="499" count="0" type="stmt"/>
|
|
1578
|
+
<line num="501" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1579
|
+
<line num="507" count="0" type="stmt"/>
|
|
1580
|
+
<line num="508" count="0" type="stmt"/>
|
|
1581
|
+
<line num="510" count="0" type="stmt"/>
|
|
1582
|
+
<line num="512" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1583
|
+
<line num="516" count="0" type="stmt"/>
|
|
1584
|
+
<line num="519" count="0" type="stmt"/>
|
|
1585
|
+
<line num="522" count="0" type="stmt"/>
|
|
1586
|
+
<line num="525" count="8" type="stmt"/>
|
|
1587
|
+
<line num="526" count="0" type="stmt"/>
|
|
1588
|
+
<line num="527" count="0" type="stmt"/>
|
|
1589
|
+
<line num="529" count="0" type="stmt"/>
|
|
1590
|
+
<line num="533" count="0" type="stmt"/>
|
|
1591
|
+
<line num="535" count="0" type="stmt"/>
|
|
1592
|
+
<line num="536" count="0" type="stmt"/>
|
|
1593
|
+
<line num="540" count="0" type="stmt"/>
|
|
1594
|
+
<line num="543" count="8" type="stmt"/>
|
|
1595
|
+
<line num="544" count="0" type="stmt"/>
|
|
1596
|
+
<line num="554" count="8" type="stmt"/>
|
|
1597
|
+
<line num="559" count="0" type="stmt"/>
|
|
1598
|
+
<line num="561" count="0" type="stmt"/>
|
|
1599
|
+
<line num="565" count="8" type="stmt"/>
|
|
1600
|
+
<line num="570" count="0" type="stmt"/>
|
|
1601
|
+
<line num="572" count="0" type="stmt"/>
|
|
1602
|
+
<line num="576" count="8" type="stmt"/>
|
|
1603
|
+
<line num="581" count="0" type="stmt"/>
|
|
1604
|
+
<line num="583" count="0" type="stmt"/>
|
|
1605
|
+
<line num="587" count="8" type="stmt"/>
|
|
1606
|
+
<line num="592" count="0" type="stmt"/>
|
|
1607
|
+
<line num="594" count="0" type="stmt"/>
|
|
1608
|
+
<line num="598" count="8" type="stmt"/>
|
|
1609
|
+
<line num="603" count="0" type="stmt"/>
|
|
1610
|
+
<line num="605" count="0" type="stmt"/>
|
|
1611
|
+
<line num="614" count="8" type="stmt"/>
|
|
1612
|
+
<line num="615" count="0" type="stmt"/>
|
|
1613
|
+
<line num="616" count="0" type="stmt"/>
|
|
1614
|
+
<line num="621" count="0" type="stmt"/>
|
|
1615
|
+
<line num="625" count="8" type="cond" truecount="0" falsecount="2"/>
|
|
1616
|
+
<line num="626" count="0" type="stmt"/>
|
|
1617
|
+
<line num="627" count="0" type="stmt"/>
|
|
1618
|
+
<line num="633" count="0" type="stmt"/>
|
|
1619
|
+
<line num="637" count="8" type="stmt"/>
|
|
1620
|
+
<line num="638" count="0" type="stmt"/>
|
|
1621
|
+
<line num="639" count="0" type="stmt"/>
|
|
1622
|
+
<line num="643" count="0" type="stmt"/>
|
|
1623
|
+
<line num="646" count="8" type="stmt"/>
|
|
1624
|
+
<line num="647" count="0" type="stmt"/>
|
|
1625
|
+
<line num="648" count="0" type="stmt"/>
|
|
1626
|
+
<line num="652" count="0" type="stmt"/>
|
|
1627
|
+
<line num="655" count="8" type="stmt"/>
|
|
1628
|
+
<line num="656" count="0" type="stmt"/>
|
|
1629
|
+
<line num="657" count="0" type="stmt"/>
|
|
1630
|
+
<line num="662" count="0" type="stmt"/>
|
|
1631
|
+
<line num="665" count="8" type="stmt"/>
|
|
1632
|
+
<line num="666" count="0" type="stmt"/>
|
|
1633
|
+
<line num="667" count="0" type="stmt"/>
|
|
1634
|
+
<line num="672" count="0" type="stmt"/>
|
|
1635
|
+
<line num="675" count="8" type="stmt"/>
|
|
1636
|
+
<line num="678" count="0" type="stmt"/>
|
|
1637
|
+
<line num="679" count="0" type="stmt"/>
|
|
1638
|
+
<line num="684" count="0" type="stmt"/>
|
|
1639
|
+
<line num="687" count="8" type="stmt"/>
|
|
1640
|
+
<line num="688" count="0" type="stmt"/>
|
|
1641
|
+
<line num="689" count="0" type="stmt"/>
|
|
1642
|
+
<line num="694" count="0" type="stmt"/>
|
|
1643
|
+
<line num="697" count="8" type="stmt"/>
|
|
1644
|
+
<line num="729" count="50" type="stmt"/>
|
|
1645
|
+
<line num="730" count="50" type="stmt"/>
|
|
1646
|
+
</file>
|
|
1647
|
+
<file name="index.ts" path="/Users/craigmartin/projects/pure-orm/src/index.ts">
|
|
1648
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
1649
|
+
</file>
|
|
1650
|
+
</package>
|
|
1651
|
+
<package name="test-utils.blog">
|
|
1652
|
+
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1653
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/blog/orm.ts">
|
|
1654
|
+
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1655
|
+
<line num="1" count="1" type="stmt"/>
|
|
1656
|
+
<line num="2" count="1" type="stmt"/>
|
|
1657
|
+
<line num="3" count="1" type="stmt"/>
|
|
1658
|
+
<line num="4" count="1" type="stmt"/>
|
|
1659
|
+
<line num="5" count="1" type="stmt"/>
|
|
1660
|
+
<line num="7" count="1" type="stmt"/>
|
|
1661
|
+
<line num="8" count="1" type="stmt"/>
|
|
1662
|
+
</file>
|
|
1663
|
+
</package>
|
|
1664
|
+
<package name="test-utils.blog.models">
|
|
1665
|
+
<metrics statements="50" coveredstatements="47" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="6"/>
|
|
1666
|
+
<file name="article.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/blog/models/article.ts">
|
|
1667
|
+
<metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1668
|
+
<line num="4" count="1" type="stmt"/>
|
|
1669
|
+
<line num="6" count="1" type="stmt"/>
|
|
1670
|
+
<line num="37" count="23" type="stmt"/>
|
|
1671
|
+
<line num="38" count="23" type="stmt"/>
|
|
1672
|
+
<line num="39" count="23" type="stmt"/>
|
|
1673
|
+
<line num="40" count="23" type="stmt"/>
|
|
1674
|
+
<line num="41" count="23" type="stmt"/>
|
|
1675
|
+
<line num="42" count="23" type="stmt"/>
|
|
1676
|
+
<line num="43" count="23" type="stmt"/>
|
|
1677
|
+
<line num="44" count="23" type="stmt"/>
|
|
1678
|
+
<line num="45" count="23" type="stmt"/>
|
|
1679
|
+
<line num="46" count="23" type="stmt"/>
|
|
1680
|
+
<line num="47" count="23" type="stmt"/>
|
|
1681
|
+
<line num="48" count="23" type="stmt"/>
|
|
1682
|
+
<line num="49" count="23" type="stmt"/>
|
|
1683
|
+
<line num="56" count="2" type="stmt"/>
|
|
1684
|
+
<line num="60" count="1" type="stmt"/>
|
|
1685
|
+
</file>
|
|
1686
|
+
<file name="article_tag.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/blog/models/article_tag.ts">
|
|
1687
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1688
|
+
<line num="5" count="1" type="stmt"/>
|
|
1689
|
+
<line num="7" count="1" type="stmt"/>
|
|
1690
|
+
<line num="21" count="23" type="stmt"/>
|
|
1691
|
+
<line num="22" count="23" type="stmt"/>
|
|
1692
|
+
<line num="23" count="23" type="stmt"/>
|
|
1693
|
+
<line num="24" count="23" type="stmt"/>
|
|
1694
|
+
<line num="25" count="23" type="stmt"/>
|
|
1695
|
+
<line num="32" count="3" type="stmt"/>
|
|
1696
|
+
<line num="36" count="1" type="stmt"/>
|
|
1697
|
+
</file>
|
|
1698
|
+
<file name="person.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/blog/models/person.ts">
|
|
1699
|
+
<metrics statements="17" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1700
|
+
<line num="3" count="1" type="stmt"/>
|
|
1701
|
+
<line num="5" count="1" type="stmt"/>
|
|
1702
|
+
<line num="50" count="23" type="stmt"/>
|
|
1703
|
+
<line num="51" count="23" type="stmt"/>
|
|
1704
|
+
<line num="52" count="23" type="stmt"/>
|
|
1705
|
+
<line num="53" count="23" type="stmt"/>
|
|
1706
|
+
<line num="54" count="23" type="stmt"/>
|
|
1707
|
+
<line num="55" count="23" type="stmt"/>
|
|
1708
|
+
<line num="56" count="23" type="stmt"/>
|
|
1709
|
+
<line num="57" count="23" type="stmt"/>
|
|
1710
|
+
<line num="58" count="23" type="stmt"/>
|
|
1711
|
+
<line num="59" count="23" type="stmt"/>
|
|
1712
|
+
<line num="60" count="23" type="stmt"/>
|
|
1713
|
+
<line num="61" count="23" type="stmt"/>
|
|
1714
|
+
<line num="68" count="0" type="stmt"/>
|
|
1715
|
+
<line num="69" count="0" type="stmt"/>
|
|
1716
|
+
<line num="73" count="1" type="stmt"/>
|
|
1717
|
+
</file>
|
|
1718
|
+
<file name="tag.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/blog/models/tag.ts">
|
|
1719
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1720
|
+
<line num="4" count="1" type="stmt"/>
|
|
1721
|
+
<line num="6" count="1" type="stmt"/>
|
|
1722
|
+
<line num="14" count="23" type="stmt"/>
|
|
1723
|
+
<line num="15" count="23" type="stmt"/>
|
|
1724
|
+
<line num="16" count="23" type="stmt"/>
|
|
1725
|
+
<line num="23" count="0" type="stmt"/>
|
|
1726
|
+
<line num="27" count="1" type="stmt"/>
|
|
1727
|
+
</file>
|
|
1728
|
+
</package>
|
|
1729
|
+
<package name="test-utils.five">
|
|
1730
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1731
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/five/orm.ts">
|
|
1732
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1733
|
+
<line num="7" count="1" type="stmt"/>
|
|
1734
|
+
<line num="8" count="1" type="stmt"/>
|
|
1735
|
+
</file>
|
|
1736
|
+
</package>
|
|
1737
|
+
<package name="test-utils.five.models">
|
|
1738
|
+
<metrics statements="36" coveredstatements="35" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="9"/>
|
|
1739
|
+
<file name="line-item.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/five/models/line-item.ts">
|
|
1740
|
+
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1741
|
+
<line num="4" count="1" type="stmt"/>
|
|
1742
|
+
<line num="6" count="1" type="stmt"/>
|
|
1743
|
+
<line num="17" count="4" type="stmt"/>
|
|
1744
|
+
<line num="18" count="4" type="stmt"/>
|
|
1745
|
+
<line num="19" count="4" type="stmt"/>
|
|
1746
|
+
<line num="26" count="2" type="stmt"/>
|
|
1747
|
+
<line num="30" count="1" type="stmt"/>
|
|
1748
|
+
</file>
|
|
1749
|
+
<file name="order.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/five/models/order.ts">
|
|
1750
|
+
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1751
|
+
<line num="3" count="1" type="stmt"/>
|
|
1752
|
+
<line num="5" count="1" type="stmt"/>
|
|
1753
|
+
<line num="12" count="4" type="stmt"/>
|
|
1754
|
+
<line num="13" count="4" type="stmt"/>
|
|
1755
|
+
<line num="20" count="1" type="stmt"/>
|
|
1756
|
+
<line num="24" count="1" type="stmt"/>
|
|
1757
|
+
</file>
|
|
1758
|
+
<file name="parcel-event.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/five/models/parcel-event.ts">
|
|
1759
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1760
|
+
<line num="4" count="1" type="stmt"/>
|
|
1761
|
+
<line num="6" count="1" type="stmt"/>
|
|
1762
|
+
<line num="21" count="4" type="stmt"/>
|
|
1763
|
+
<line num="22" count="4" type="stmt"/>
|
|
1764
|
+
<line num="23" count="4" type="stmt"/>
|
|
1765
|
+
<line num="24" count="4" type="stmt"/>
|
|
1766
|
+
<line num="25" count="4" type="stmt"/>
|
|
1767
|
+
<line num="32" count="1" type="stmt"/>
|
|
1768
|
+
<line num="36" count="1" type="stmt"/>
|
|
1769
|
+
</file>
|
|
1770
|
+
<file name="parcel-line-item.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/five/models/parcel-line-item.ts">
|
|
1771
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1772
|
+
<line num="5" count="1" type="stmt"/>
|
|
1773
|
+
<line num="7" count="1" type="stmt"/>
|
|
1774
|
+
<line num="21" count="4" type="stmt"/>
|
|
1775
|
+
<line num="22" count="4" type="stmt"/>
|
|
1776
|
+
<line num="23" count="4" type="stmt"/>
|
|
1777
|
+
<line num="24" count="4" type="stmt"/>
|
|
1778
|
+
<line num="25" count="4" type="stmt"/>
|
|
1779
|
+
<line num="32" count="1" type="stmt"/>
|
|
1780
|
+
<line num="36" count="1" type="stmt"/>
|
|
1781
|
+
</file>
|
|
1782
|
+
<file name="parcel.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/five/models/parcel.ts">
|
|
1783
|
+
<metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1784
|
+
<line num="3" count="1" type="stmt"/>
|
|
1785
|
+
<line num="5" count="1" type="stmt"/>
|
|
1786
|
+
<line num="11" count="4" type="stmt"/>
|
|
1787
|
+
<line num="18" count="0" type="stmt"/>
|
|
1788
|
+
<line num="22" count="1" type="stmt"/>
|
|
1789
|
+
</file>
|
|
1790
|
+
</package>
|
|
1791
|
+
<package name="test-utils.nine">
|
|
1792
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1793
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/nine/orm.ts">
|
|
1794
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1795
|
+
<line num="3" count="1" type="stmt"/>
|
|
1796
|
+
<line num="4" count="1" type="stmt"/>
|
|
1797
|
+
</file>
|
|
1798
|
+
</package>
|
|
1799
|
+
<package name="test-utils.nine.models">
|
|
1800
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1801
|
+
<file name="feature-switch.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/nine/models/feature-switch.ts">
|
|
1802
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1803
|
+
<line num="3" count="1" type="stmt"/>
|
|
1804
|
+
<line num="5" count="1" type="stmt"/>
|
|
1805
|
+
<line num="19" count="2" type="stmt"/>
|
|
1806
|
+
<line num="20" count="2" type="stmt"/>
|
|
1807
|
+
<line num="21" count="2" type="stmt"/>
|
|
1808
|
+
<line num="28" count="1" type="stmt"/>
|
|
1809
|
+
<line num="29" count="1" type="stmt"/>
|
|
1810
|
+
<line num="33" count="1" type="stmt"/>
|
|
1811
|
+
</file>
|
|
1812
|
+
</package>
|
|
1813
|
+
<package name="test-utils.order">
|
|
1814
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1815
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order/orm.ts">
|
|
1816
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1817
|
+
<line num="8" count="1" type="stmt"/>
|
|
1818
|
+
<line num="9" count="1" type="stmt"/>
|
|
1819
|
+
</file>
|
|
1820
|
+
</package>
|
|
1821
|
+
<package name="test-utils.order-more">
|
|
1822
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1823
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/orm.ts">
|
|
1824
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
1825
|
+
<line num="23" count="1" type="stmt"/>
|
|
1826
|
+
<line num="24" count="1" type="stmt"/>
|
|
1827
|
+
</file>
|
|
1828
|
+
</package>
|
|
1829
|
+
<package name="test-utils.order-more.models">
|
|
1830
|
+
<metrics statements="239" coveredstatements="229" conditionals="0" coveredconditionals="0" methods="40" coveredmethods="30"/>
|
|
1831
|
+
<file name="actual-product-variant.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/actual-product-variant.ts">
|
|
1832
|
+
<metrics statements="6" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1833
|
+
<line num="3" count="1" type="stmt"/>
|
|
1834
|
+
<line num="5" count="1" type="stmt"/>
|
|
1835
|
+
<line num="12" count="22" type="stmt"/>
|
|
1836
|
+
<line num="13" count="22" type="stmt"/>
|
|
1837
|
+
<line num="22" count="0" type="stmt"/>
|
|
1838
|
+
<line num="26" count="1" type="stmt"/>
|
|
1839
|
+
</file>
|
|
1840
|
+
<file name="color.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/color.ts">
|
|
1841
|
+
<metrics statements="9" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1842
|
+
<line num="3" count="1" type="stmt"/>
|
|
1843
|
+
<line num="5" count="1" type="stmt"/>
|
|
1844
|
+
<line num="21" count="69" type="stmt"/>
|
|
1845
|
+
<line num="22" count="69" type="stmt"/>
|
|
1846
|
+
<line num="23" count="69" type="stmt"/>
|
|
1847
|
+
<line num="24" count="69" type="stmt"/>
|
|
1848
|
+
<line num="25" count="69" type="stmt"/>
|
|
1849
|
+
<line num="32" count="0" type="stmt"/>
|
|
1850
|
+
<line num="36" count="1" type="stmt"/>
|
|
1851
|
+
</file>
|
|
1852
|
+
<file name="customer.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/customer.ts">
|
|
1853
|
+
<metrics statements="6" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1854
|
+
<line num="3" count="1" type="stmt"/>
|
|
1855
|
+
<line num="5" count="1" type="stmt"/>
|
|
1856
|
+
<line num="12" count="47" type="stmt"/>
|
|
1857
|
+
<line num="13" count="47" type="stmt"/>
|
|
1858
|
+
<line num="20" count="0" type="stmt"/>
|
|
1859
|
+
<line num="24" count="1" type="stmt"/>
|
|
1860
|
+
</file>
|
|
1861
|
+
<file name="gender.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/gender.ts">
|
|
1862
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1863
|
+
<line num="3" count="1" type="stmt"/>
|
|
1864
|
+
<line num="5" count="1" type="stmt"/>
|
|
1865
|
+
<line num="13" count="45" type="stmt"/>
|
|
1866
|
+
<line num="14" count="45" type="stmt"/>
|
|
1867
|
+
<line num="15" count="45" type="stmt"/>
|
|
1868
|
+
<line num="22" count="0" type="stmt"/>
|
|
1869
|
+
<line num="26" count="1" type="stmt"/>
|
|
1870
|
+
</file>
|
|
1871
|
+
<file name="inventory-level.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/inventory-level.ts">
|
|
1872
|
+
<metrics statements="13" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1873
|
+
<line num="6" count="1" type="stmt"/>
|
|
1874
|
+
<line num="8" count="1" type="stmt"/>
|
|
1875
|
+
<line num="30" count="16" type="stmt"/>
|
|
1876
|
+
<line num="31" count="16" type="stmt"/>
|
|
1877
|
+
<line num="32" count="16" type="stmt"/>
|
|
1878
|
+
<line num="33" count="16" type="stmt"/>
|
|
1879
|
+
<line num="34" count="16" type="stmt"/>
|
|
1880
|
+
<line num="35" count="16" type="stmt"/>
|
|
1881
|
+
<line num="36" count="16" type="stmt"/>
|
|
1882
|
+
<line num="37" count="16" type="stmt"/>
|
|
1883
|
+
<line num="38" count="16" type="stmt"/>
|
|
1884
|
+
<line num="45" count="2" type="stmt"/>
|
|
1885
|
+
<line num="49" count="1" type="stmt"/>
|
|
1886
|
+
</file>
|
|
1887
|
+
<file name="line-item.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/line-item.ts">
|
|
1888
|
+
<metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1889
|
+
<line num="5" count="1" type="stmt"/>
|
|
1890
|
+
<line num="7" count="1" type="stmt"/>
|
|
1891
|
+
<line num="38" count="47" type="stmt"/>
|
|
1892
|
+
<line num="39" count="47" type="stmt"/>
|
|
1893
|
+
<line num="40" count="47" type="stmt"/>
|
|
1894
|
+
<line num="41" count="47" type="stmt"/>
|
|
1895
|
+
<line num="42" count="47" type="stmt"/>
|
|
1896
|
+
<line num="43" count="47" type="stmt"/>
|
|
1897
|
+
<line num="44" count="47" type="stmt"/>
|
|
1898
|
+
<line num="45" count="47" type="stmt"/>
|
|
1899
|
+
<line num="46" count="47" type="stmt"/>
|
|
1900
|
+
<line num="47" count="47" type="stmt"/>
|
|
1901
|
+
<line num="48" count="47" type="stmt"/>
|
|
1902
|
+
<line num="49" count="47" type="stmt"/>
|
|
1903
|
+
<line num="50" count="47" type="stmt"/>
|
|
1904
|
+
<line num="57" count="10" type="stmt"/>
|
|
1905
|
+
<line num="61" count="1" type="stmt"/>
|
|
1906
|
+
</file>
|
|
1907
|
+
<file name="order.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/order.ts">
|
|
1908
|
+
<metrics statements="41" coveredstatements="41" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1909
|
+
<line num="6" count="1" type="stmt"/>
|
|
1910
|
+
<line num="8" count="1" type="stmt"/>
|
|
1911
|
+
<line num="72" count="47" type="stmt"/>
|
|
1912
|
+
<line num="73" count="47" type="stmt"/>
|
|
1913
|
+
<line num="74" count="47" type="stmt"/>
|
|
1914
|
+
<line num="75" count="47" type="stmt"/>
|
|
1915
|
+
<line num="76" count="47" type="stmt"/>
|
|
1916
|
+
<line num="77" count="47" type="stmt"/>
|
|
1917
|
+
<line num="78" count="47" type="stmt"/>
|
|
1918
|
+
<line num="79" count="47" type="stmt"/>
|
|
1919
|
+
<line num="80" count="47" type="stmt"/>
|
|
1920
|
+
<line num="81" count="47" type="stmt"/>
|
|
1921
|
+
<line num="82" count="47" type="stmt"/>
|
|
1922
|
+
<line num="83" count="47" type="stmt"/>
|
|
1923
|
+
<line num="84" count="47" type="stmt"/>
|
|
1924
|
+
<line num="85" count="47" type="stmt"/>
|
|
1925
|
+
<line num="86" count="47" type="stmt"/>
|
|
1926
|
+
<line num="87" count="47" type="stmt"/>
|
|
1927
|
+
<line num="88" count="47" type="stmt"/>
|
|
1928
|
+
<line num="89" count="47" type="stmt"/>
|
|
1929
|
+
<line num="90" count="47" type="stmt"/>
|
|
1930
|
+
<line num="91" count="47" type="stmt"/>
|
|
1931
|
+
<line num="92" count="47" type="stmt"/>
|
|
1932
|
+
<line num="93" count="47" type="stmt"/>
|
|
1933
|
+
<line num="94" count="47" type="stmt"/>
|
|
1934
|
+
<line num="95" count="47" type="stmt"/>
|
|
1935
|
+
<line num="96" count="47" type="stmt"/>
|
|
1936
|
+
<line num="97" count="47" type="stmt"/>
|
|
1937
|
+
<line num="98" count="47" type="stmt"/>
|
|
1938
|
+
<line num="99" count="47" type="stmt"/>
|
|
1939
|
+
<line num="100" count="47" type="stmt"/>
|
|
1940
|
+
<line num="101" count="47" type="stmt"/>
|
|
1941
|
+
<line num="102" count="47" type="stmt"/>
|
|
1942
|
+
<line num="103" count="47" type="stmt"/>
|
|
1943
|
+
<line num="104" count="47" type="stmt"/>
|
|
1944
|
+
<line num="105" count="47" type="stmt"/>
|
|
1945
|
+
<line num="106" count="47" type="stmt"/>
|
|
1946
|
+
<line num="107" count="47" type="stmt"/>
|
|
1947
|
+
<line num="108" count="47" type="stmt"/>
|
|
1948
|
+
<line num="115" count="2" type="stmt"/>
|
|
1949
|
+
<line num="119" count="1" type="stmt"/>
|
|
1950
|
+
</file>
|
|
1951
|
+
<file name="parcel-event.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/parcel-event.ts">
|
|
1952
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1953
|
+
<line num="4" count="1" type="stmt"/>
|
|
1954
|
+
<line num="6" count="1" type="stmt"/>
|
|
1955
|
+
<line num="21" count="47" type="stmt"/>
|
|
1956
|
+
<line num="22" count="47" type="stmt"/>
|
|
1957
|
+
<line num="23" count="47" type="stmt"/>
|
|
1958
|
+
<line num="24" count="47" type="stmt"/>
|
|
1959
|
+
<line num="25" count="47" type="stmt"/>
|
|
1960
|
+
<line num="32" count="8" type="stmt"/>
|
|
1961
|
+
<line num="36" count="1" type="stmt"/>
|
|
1962
|
+
</file>
|
|
1963
|
+
<file name="parcel-line-item.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/parcel-line-item.ts">
|
|
1964
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
1965
|
+
<line num="5" count="1" type="stmt"/>
|
|
1966
|
+
<line num="7" count="1" type="stmt"/>
|
|
1967
|
+
<line num="21" count="47" type="stmt"/>
|
|
1968
|
+
<line num="22" count="47" type="stmt"/>
|
|
1969
|
+
<line num="23" count="47" type="stmt"/>
|
|
1970
|
+
<line num="24" count="47" type="stmt"/>
|
|
1971
|
+
<line num="25" count="47" type="stmt"/>
|
|
1972
|
+
<line num="32" count="8" type="stmt"/>
|
|
1973
|
+
<line num="36" count="1" type="stmt"/>
|
|
1974
|
+
</file>
|
|
1975
|
+
<file name="parcel.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/parcel.ts">
|
|
1976
|
+
<metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1977
|
+
<line num="3" count="1" type="stmt"/>
|
|
1978
|
+
<line num="5" count="1" type="stmt"/>
|
|
1979
|
+
<line num="11" count="47" type="stmt"/>
|
|
1980
|
+
<line num="18" count="0" type="stmt"/>
|
|
1981
|
+
<line num="22" count="1" type="stmt"/>
|
|
1982
|
+
</file>
|
|
1983
|
+
<file name="physical-address.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/physical-address.ts">
|
|
1984
|
+
<metrics statements="15" coveredstatements="14" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
1985
|
+
<line num="3" count="1" type="stmt"/>
|
|
1986
|
+
<line num="5" count="1" type="stmt"/>
|
|
1987
|
+
<line num="33" count="47" type="stmt"/>
|
|
1988
|
+
<line num="34" count="47" type="stmt"/>
|
|
1989
|
+
<line num="35" count="47" type="stmt"/>
|
|
1990
|
+
<line num="36" count="47" type="stmt"/>
|
|
1991
|
+
<line num="37" count="47" type="stmt"/>
|
|
1992
|
+
<line num="38" count="47" type="stmt"/>
|
|
1993
|
+
<line num="39" count="47" type="stmt"/>
|
|
1994
|
+
<line num="40" count="47" type="stmt"/>
|
|
1995
|
+
<line num="41" count="47" type="stmt"/>
|
|
1996
|
+
<line num="42" count="47" type="stmt"/>
|
|
1997
|
+
<line num="43" count="47" type="stmt"/>
|
|
1998
|
+
<line num="50" count="0" type="stmt"/>
|
|
1999
|
+
<line num="54" count="1" type="stmt"/>
|
|
2000
|
+
</file>
|
|
2001
|
+
<file name="product-variant-image.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/product-variant-image.ts">
|
|
2002
|
+
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2003
|
+
<line num="4" count="1" type="stmt"/>
|
|
2004
|
+
<line num="6" count="1" type="stmt"/>
|
|
2005
|
+
<line num="23" count="61" type="stmt"/>
|
|
2006
|
+
<line num="24" count="61" type="stmt"/>
|
|
2007
|
+
<line num="25" count="61" type="stmt"/>
|
|
2008
|
+
<line num="26" count="61" type="stmt"/>
|
|
2009
|
+
<line num="27" count="61" type="stmt"/>
|
|
2010
|
+
<line num="28" count="61" type="stmt"/>
|
|
2011
|
+
<line num="35" count="14" type="stmt"/>
|
|
2012
|
+
<line num="39" count="1" type="stmt"/>
|
|
2013
|
+
</file>
|
|
2014
|
+
<file name="product-variant.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/product-variant.ts">
|
|
2015
|
+
<metrics statements="24" coveredstatements="24" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2016
|
+
<line num="8" count="1" type="stmt"/>
|
|
2017
|
+
<line num="10" count="1" type="stmt"/>
|
|
2018
|
+
<line num="51" count="69" type="stmt"/>
|
|
2019
|
+
<line num="52" count="69" type="stmt"/>
|
|
2020
|
+
<line num="53" count="69" type="stmt"/>
|
|
2021
|
+
<line num="54" count="69" type="stmt"/>
|
|
2022
|
+
<line num="55" count="69" type="stmt"/>
|
|
2023
|
+
<line num="56" count="69" type="stmt"/>
|
|
2024
|
+
<line num="57" count="69" type="stmt"/>
|
|
2025
|
+
<line num="58" count="69" type="stmt"/>
|
|
2026
|
+
<line num="59" count="69" type="stmt"/>
|
|
2027
|
+
<line num="60" count="69" type="stmt"/>
|
|
2028
|
+
<line num="61" count="69" type="stmt"/>
|
|
2029
|
+
<line num="62" count="69" type="stmt"/>
|
|
2030
|
+
<line num="63" count="69" type="stmt"/>
|
|
2031
|
+
<line num="64" count="69" type="stmt"/>
|
|
2032
|
+
<line num="65" count="69" type="stmt"/>
|
|
2033
|
+
<line num="66" count="69" type="stmt"/>
|
|
2034
|
+
<line num="67" count="69" type="stmt"/>
|
|
2035
|
+
<line num="68" count="69" type="stmt"/>
|
|
2036
|
+
<line num="69" count="69" type="stmt"/>
|
|
2037
|
+
<line num="70" count="69" type="stmt"/>
|
|
2038
|
+
<line num="77" count="6" type="stmt"/>
|
|
2039
|
+
<line num="81" count="1" type="stmt"/>
|
|
2040
|
+
</file>
|
|
2041
|
+
<file name="product.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/product.ts">
|
|
2042
|
+
<metrics statements="14" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2043
|
+
<line num="3" count="1" type="stmt"/>
|
|
2044
|
+
<line num="5" count="1" type="stmt"/>
|
|
2045
|
+
<line num="31" count="69" type="stmt"/>
|
|
2046
|
+
<line num="32" count="69" type="stmt"/>
|
|
2047
|
+
<line num="33" count="69" type="stmt"/>
|
|
2048
|
+
<line num="34" count="69" type="stmt"/>
|
|
2049
|
+
<line num="35" count="69" type="stmt"/>
|
|
2050
|
+
<line num="36" count="69" type="stmt"/>
|
|
2051
|
+
<line num="37" count="69" type="stmt"/>
|
|
2052
|
+
<line num="38" count="69" type="stmt"/>
|
|
2053
|
+
<line num="39" count="69" type="stmt"/>
|
|
2054
|
+
<line num="40" count="69" type="stmt"/>
|
|
2055
|
+
<line num="47" count="0" type="stmt"/>
|
|
2056
|
+
<line num="51" count="1" type="stmt"/>
|
|
2057
|
+
</file>
|
|
2058
|
+
<file name="refund.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/refund.ts">
|
|
2059
|
+
<metrics statements="14" coveredstatements="14" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2060
|
+
<line num="4" count="1" type="stmt"/>
|
|
2061
|
+
<line num="6" count="1" type="stmt"/>
|
|
2062
|
+
<line num="31" count="47" type="stmt"/>
|
|
2063
|
+
<line num="32" count="47" type="stmt"/>
|
|
2064
|
+
<line num="33" count="47" type="stmt"/>
|
|
2065
|
+
<line num="34" count="47" type="stmt"/>
|
|
2066
|
+
<line num="35" count="47" type="stmt"/>
|
|
2067
|
+
<line num="36" count="47" type="stmt"/>
|
|
2068
|
+
<line num="37" count="47" type="stmt"/>
|
|
2069
|
+
<line num="38" count="47" type="stmt"/>
|
|
2070
|
+
<line num="39" count="47" type="stmt"/>
|
|
2071
|
+
<line num="40" count="47" type="stmt"/>
|
|
2072
|
+
<line num="47" count="4" type="stmt"/>
|
|
2073
|
+
<line num="51" count="1" type="stmt"/>
|
|
2074
|
+
</file>
|
|
2075
|
+
<file name="shipment-actual-product-variant.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/shipment-actual-product-variant.ts">
|
|
2076
|
+
<metrics statements="11" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2077
|
+
<line num="5" count="1" type="stmt"/>
|
|
2078
|
+
<line num="7" count="1" type="stmt"/>
|
|
2079
|
+
<line num="25" count="6" type="stmt"/>
|
|
2080
|
+
<line num="26" count="6" type="stmt"/>
|
|
2081
|
+
<line num="27" count="6" type="stmt"/>
|
|
2082
|
+
<line num="28" count="6" type="stmt"/>
|
|
2083
|
+
<line num="29" count="6" type="stmt"/>
|
|
2084
|
+
<line num="30" count="6" type="stmt"/>
|
|
2085
|
+
<line num="31" count="6" type="stmt"/>
|
|
2086
|
+
<line num="40" count="2" type="stmt"/>
|
|
2087
|
+
<line num="44" count="1" type="stmt"/>
|
|
2088
|
+
</file>
|
|
2089
|
+
<file name="shipment.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/shipment.ts">
|
|
2090
|
+
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2091
|
+
<line num="3" count="1" type="stmt"/>
|
|
2092
|
+
<line num="5" count="1" type="stmt"/>
|
|
2093
|
+
<line num="17" count="20" type="stmt"/>
|
|
2094
|
+
<line num="18" count="20" type="stmt"/>
|
|
2095
|
+
<line num="19" count="20" type="stmt"/>
|
|
2096
|
+
<line num="26" count="1" type="stmt"/>
|
|
2097
|
+
<line num="30" count="1" type="stmt"/>
|
|
2098
|
+
</file>
|
|
2099
|
+
<file name="size.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/size.ts">
|
|
2100
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2101
|
+
<line num="3" count="1" type="stmt"/>
|
|
2102
|
+
<line num="5" count="1" type="stmt"/>
|
|
2103
|
+
<line num="13" count="69" type="stmt"/>
|
|
2104
|
+
<line num="14" count="69" type="stmt"/>
|
|
2105
|
+
<line num="15" count="69" type="stmt"/>
|
|
2106
|
+
<line num="22" count="0" type="stmt"/>
|
|
2107
|
+
<line num="26" count="1" type="stmt"/>
|
|
2108
|
+
</file>
|
|
2109
|
+
<file name="utm-medium.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/utm-medium.ts">
|
|
2110
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2111
|
+
<line num="3" count="1" type="stmt"/>
|
|
2112
|
+
<line num="5" count="1" type="stmt"/>
|
|
2113
|
+
<line num="13" count="47" type="stmt"/>
|
|
2114
|
+
<line num="14" count="47" type="stmt"/>
|
|
2115
|
+
<line num="15" count="47" type="stmt"/>
|
|
2116
|
+
<line num="22" count="0" type="stmt"/>
|
|
2117
|
+
<line num="26" count="1" type="stmt"/>
|
|
2118
|
+
</file>
|
|
2119
|
+
<file name="utm-source.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order-more/models/utm-source.ts">
|
|
2120
|
+
<metrics statements="8" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2121
|
+
<line num="3" count="1" type="stmt"/>
|
|
2122
|
+
<line num="5" count="1" type="stmt"/>
|
|
2123
|
+
<line num="14" count="47" type="stmt"/>
|
|
2124
|
+
<line num="15" count="47" type="stmt"/>
|
|
2125
|
+
<line num="16" count="47" type="stmt"/>
|
|
2126
|
+
<line num="17" count="47" type="stmt"/>
|
|
2127
|
+
<line num="24" count="0" type="stmt"/>
|
|
2128
|
+
<line num="28" count="1" type="stmt"/>
|
|
2129
|
+
</file>
|
|
2130
|
+
</package>
|
|
2131
|
+
<package name="test-utils.order.models">
|
|
2132
|
+
<metrics statements="91" coveredstatements="88" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="7"/>
|
|
2133
|
+
<file name="line-item.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order/models/line-item.ts">
|
|
2134
|
+
<metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2135
|
+
<line num="5" count="1" type="stmt"/>
|
|
2136
|
+
<line num="7" count="1" type="stmt"/>
|
|
2137
|
+
<line num="38" count="6" type="stmt"/>
|
|
2138
|
+
<line num="39" count="6" type="stmt"/>
|
|
2139
|
+
<line num="40" count="6" type="stmt"/>
|
|
2140
|
+
<line num="41" count="6" type="stmt"/>
|
|
2141
|
+
<line num="42" count="6" type="stmt"/>
|
|
2142
|
+
<line num="43" count="6" type="stmt"/>
|
|
2143
|
+
<line num="44" count="6" type="stmt"/>
|
|
2144
|
+
<line num="45" count="6" type="stmt"/>
|
|
2145
|
+
<line num="46" count="6" type="stmt"/>
|
|
2146
|
+
<line num="47" count="6" type="stmt"/>
|
|
2147
|
+
<line num="48" count="6" type="stmt"/>
|
|
2148
|
+
<line num="49" count="6" type="stmt"/>
|
|
2149
|
+
<line num="50" count="6" type="stmt"/>
|
|
2150
|
+
<line num="57" count="1" type="stmt"/>
|
|
2151
|
+
<line num="61" count="1" type="stmt"/>
|
|
2152
|
+
</file>
|
|
2153
|
+
<file name="order.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order/models/order.ts">
|
|
2154
|
+
<metrics statements="35" coveredstatements="35" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2155
|
+
<line num="4" count="1" type="stmt"/>
|
|
2156
|
+
<line num="6" count="1" type="stmt"/>
|
|
2157
|
+
<line num="61" count="6" type="stmt"/>
|
|
2158
|
+
<line num="62" count="6" type="stmt"/>
|
|
2159
|
+
<line num="63" count="6" type="stmt"/>
|
|
2160
|
+
<line num="64" count="6" type="stmt"/>
|
|
2161
|
+
<line num="65" count="6" type="stmt"/>
|
|
2162
|
+
<line num="66" count="6" type="stmt"/>
|
|
2163
|
+
<line num="67" count="6" type="stmt"/>
|
|
2164
|
+
<line num="68" count="6" type="stmt"/>
|
|
2165
|
+
<line num="69" count="6" type="stmt"/>
|
|
2166
|
+
<line num="70" count="6" type="stmt"/>
|
|
2167
|
+
<line num="71" count="6" type="stmt"/>
|
|
2168
|
+
<line num="72" count="6" type="stmt"/>
|
|
2169
|
+
<line num="73" count="6" type="stmt"/>
|
|
2170
|
+
<line num="74" count="6" type="stmt"/>
|
|
2171
|
+
<line num="75" count="6" type="stmt"/>
|
|
2172
|
+
<line num="76" count="6" type="stmt"/>
|
|
2173
|
+
<line num="77" count="6" type="stmt"/>
|
|
2174
|
+
<line num="78" count="6" type="stmt"/>
|
|
2175
|
+
<line num="79" count="6" type="stmt"/>
|
|
2176
|
+
<line num="80" count="6" type="stmt"/>
|
|
2177
|
+
<line num="81" count="6" type="stmt"/>
|
|
2178
|
+
<line num="82" count="6" type="stmt"/>
|
|
2179
|
+
<line num="83" count="6" type="stmt"/>
|
|
2180
|
+
<line num="84" count="6" type="stmt"/>
|
|
2181
|
+
<line num="85" count="6" type="stmt"/>
|
|
2182
|
+
<line num="86" count="6" type="stmt"/>
|
|
2183
|
+
<line num="87" count="6" type="stmt"/>
|
|
2184
|
+
<line num="88" count="6" type="stmt"/>
|
|
2185
|
+
<line num="89" count="6" type="stmt"/>
|
|
2186
|
+
<line num="90" count="6" type="stmt"/>
|
|
2187
|
+
<line num="91" count="6" type="stmt"/>
|
|
2188
|
+
<line num="98" count="1" type="stmt"/>
|
|
2189
|
+
<line num="102" count="1" type="stmt"/>
|
|
2190
|
+
</file>
|
|
2191
|
+
<file name="product-variant.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order/models/product-variant.ts">
|
|
2192
|
+
<metrics statements="18" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2193
|
+
<line num="4" count="1" type="stmt"/>
|
|
2194
|
+
<line num="6" count="1" type="stmt"/>
|
|
2195
|
+
<line num="39" count="6" type="stmt"/>
|
|
2196
|
+
<line num="40" count="6" type="stmt"/>
|
|
2197
|
+
<line num="41" count="6" type="stmt"/>
|
|
2198
|
+
<line num="42" count="6" type="stmt"/>
|
|
2199
|
+
<line num="43" count="6" type="stmt"/>
|
|
2200
|
+
<line num="44" count="6" type="stmt"/>
|
|
2201
|
+
<line num="45" count="6" type="stmt"/>
|
|
2202
|
+
<line num="46" count="6" type="stmt"/>
|
|
2203
|
+
<line num="47" count="6" type="stmt"/>
|
|
2204
|
+
<line num="48" count="6" type="stmt"/>
|
|
2205
|
+
<line num="49" count="6" type="stmt"/>
|
|
2206
|
+
<line num="50" count="6" type="stmt"/>
|
|
2207
|
+
<line num="51" count="6" type="stmt"/>
|
|
2208
|
+
<line num="52" count="6" type="stmt"/>
|
|
2209
|
+
<line num="59" count="0" type="stmt"/>
|
|
2210
|
+
<line num="63" count="1" type="stmt"/>
|
|
2211
|
+
</file>
|
|
2212
|
+
<file name="product.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order/models/product.ts">
|
|
2213
|
+
<metrics statements="13" coveredstatements="12" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2214
|
+
<line num="3" count="1" type="stmt"/>
|
|
2215
|
+
<line num="5" count="1" type="stmt"/>
|
|
2216
|
+
<line num="29" count="6" type="stmt"/>
|
|
2217
|
+
<line num="30" count="6" type="stmt"/>
|
|
2218
|
+
<line num="31" count="6" type="stmt"/>
|
|
2219
|
+
<line num="32" count="6" type="stmt"/>
|
|
2220
|
+
<line num="33" count="6" type="stmt"/>
|
|
2221
|
+
<line num="34" count="6" type="stmt"/>
|
|
2222
|
+
<line num="35" count="6" type="stmt"/>
|
|
2223
|
+
<line num="36" count="6" type="stmt"/>
|
|
2224
|
+
<line num="37" count="6" type="stmt"/>
|
|
2225
|
+
<line num="44" count="0" type="stmt"/>
|
|
2226
|
+
<line num="48" count="1" type="stmt"/>
|
|
2227
|
+
</file>
|
|
2228
|
+
<file name="utm-source.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/order/models/utm-source.ts">
|
|
2229
|
+
<metrics statements="8" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2230
|
+
<line num="3" count="1" type="stmt"/>
|
|
2231
|
+
<line num="5" count="1" type="stmt"/>
|
|
2232
|
+
<line num="14" count="6" type="stmt"/>
|
|
2233
|
+
<line num="15" count="6" type="stmt"/>
|
|
2234
|
+
<line num="16" count="6" type="stmt"/>
|
|
2235
|
+
<line num="17" count="6" type="stmt"/>
|
|
2236
|
+
<line num="24" count="0" type="stmt"/>
|
|
2237
|
+
<line num="28" count="1" type="stmt"/>
|
|
2238
|
+
</file>
|
|
2239
|
+
</package>
|
|
2240
|
+
<package name="test-utils.six">
|
|
2241
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
2242
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/six/orm.ts">
|
|
2243
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
2244
|
+
<line num="7" count="1" type="stmt"/>
|
|
2245
|
+
<line num="8" count="1" type="stmt"/>
|
|
2246
|
+
</file>
|
|
2247
|
+
</package>
|
|
2248
|
+
<package name="test-utils.six.models">
|
|
2249
|
+
<metrics statements="34" coveredstatements="31" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="7"/>
|
|
2250
|
+
<file name="customer.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/six/models/customer.ts">
|
|
2251
|
+
<metrics statements="6" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2252
|
+
<line num="3" count="1" type="stmt"/>
|
|
2253
|
+
<line num="5" count="1" type="stmt"/>
|
|
2254
|
+
<line num="12" count="2" type="stmt"/>
|
|
2255
|
+
<line num="13" count="2" type="stmt"/>
|
|
2256
|
+
<line num="20" count="0" type="stmt"/>
|
|
2257
|
+
<line num="24" count="1" type="stmt"/>
|
|
2258
|
+
</file>
|
|
2259
|
+
<file name="line-item.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/six/models/line-item.ts">
|
|
2260
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2261
|
+
<line num="4" count="1" type="stmt"/>
|
|
2262
|
+
<line num="6" count="1" type="stmt"/>
|
|
2263
|
+
<line num="17" count="2" type="stmt"/>
|
|
2264
|
+
<line num="18" count="2" type="stmt"/>
|
|
2265
|
+
<line num="19" count="2" type="stmt"/>
|
|
2266
|
+
<line num="26" count="0" type="stmt"/>
|
|
2267
|
+
<line num="30" count="1" type="stmt"/>
|
|
2268
|
+
</file>
|
|
2269
|
+
<file name="order.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/six/models/order.ts">
|
|
2270
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2271
|
+
<line num="4" count="1" type="stmt"/>
|
|
2272
|
+
<line num="6" count="1" type="stmt"/>
|
|
2273
|
+
<line num="17" count="2" type="stmt"/>
|
|
2274
|
+
<line num="18" count="2" type="stmt"/>
|
|
2275
|
+
<line num="19" count="2" type="stmt"/>
|
|
2276
|
+
<line num="26" count="0" type="stmt"/>
|
|
2277
|
+
<line num="30" count="1" type="stmt"/>
|
|
2278
|
+
</file>
|
|
2279
|
+
<file name="parcel-line-item.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/six/models/parcel-line-item.ts">
|
|
2280
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2281
|
+
<line num="5" count="1" type="stmt"/>
|
|
2282
|
+
<line num="7" count="1" type="stmt"/>
|
|
2283
|
+
<line num="21" count="2" type="stmt"/>
|
|
2284
|
+
<line num="22" count="2" type="stmt"/>
|
|
2285
|
+
<line num="23" count="2" type="stmt"/>
|
|
2286
|
+
<line num="24" count="2" type="stmt"/>
|
|
2287
|
+
<line num="25" count="2" type="stmt"/>
|
|
2288
|
+
<line num="32" count="1" type="stmt"/>
|
|
2289
|
+
<line num="36" count="1" type="stmt"/>
|
|
2290
|
+
</file>
|
|
2291
|
+
<file name="parcel.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/six/models/parcel.ts">
|
|
2292
|
+
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2293
|
+
<line num="3" count="1" type="stmt"/>
|
|
2294
|
+
<line num="5" count="1" type="stmt"/>
|
|
2295
|
+
<line num="11" count="2" type="stmt"/>
|
|
2296
|
+
<line num="18" count="1" type="stmt"/>
|
|
2297
|
+
<line num="22" count="1" type="stmt"/>
|
|
2298
|
+
</file>
|
|
2299
|
+
</package>
|
|
2300
|
+
<package name="test-utils.thirteen">
|
|
2301
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
2302
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/orm.ts">
|
|
2303
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
2304
|
+
<line num="10" count="1" type="stmt"/>
|
|
2305
|
+
<line num="11" count="1" type="stmt"/>
|
|
2306
|
+
</file>
|
|
2307
|
+
</package>
|
|
2308
|
+
<package name="test-utils.thirteen.models">
|
|
2309
|
+
<metrics statements="56" coveredstatements="51" conditionals="0" coveredconditionals="0" methods="16" coveredmethods="11"/>
|
|
2310
|
+
<file name="audience.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/audience.ts">
|
|
2311
|
+
<metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2312
|
+
<line num="3" count="1" type="stmt"/>
|
|
2313
|
+
<line num="5" count="1" type="stmt"/>
|
|
2314
|
+
<line num="11" count="4" type="stmt"/>
|
|
2315
|
+
<line num="18" count="0" type="stmt"/>
|
|
2316
|
+
<line num="22" count="1" type="stmt"/>
|
|
2317
|
+
</file>
|
|
2318
|
+
<file name="brand.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/brand.ts">
|
|
2319
|
+
<metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2320
|
+
<line num="3" count="1" type="stmt"/>
|
|
2321
|
+
<line num="5" count="1" type="stmt"/>
|
|
2322
|
+
<line num="11" count="4" type="stmt"/>
|
|
2323
|
+
<line num="18" count="0" type="stmt"/>
|
|
2324
|
+
<line num="22" count="1" type="stmt"/>
|
|
2325
|
+
</file>
|
|
2326
|
+
<file name="category.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/category.ts">
|
|
2327
|
+
<metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2328
|
+
<line num="3" count="1" type="stmt"/>
|
|
2329
|
+
<line num="5" count="1" type="stmt"/>
|
|
2330
|
+
<line num="11" count="4" type="stmt"/>
|
|
2331
|
+
<line num="18" count="0" type="stmt"/>
|
|
2332
|
+
<line num="22" count="1" type="stmt"/>
|
|
2333
|
+
</file>
|
|
2334
|
+
<file name="member.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/member.ts">
|
|
2335
|
+
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2336
|
+
<line num="3" count="1" type="stmt"/>
|
|
2337
|
+
<line num="5" count="1" type="stmt"/>
|
|
2338
|
+
<line num="11" count="4" type="stmt"/>
|
|
2339
|
+
<line num="18" count="1" type="stmt"/>
|
|
2340
|
+
<line num="22" count="1" type="stmt"/>
|
|
2341
|
+
</file>
|
|
2342
|
+
<file name="passion.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/passion.ts">
|
|
2343
|
+
<metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2344
|
+
<line num="3" count="1" type="stmt"/>
|
|
2345
|
+
<line num="5" count="1" type="stmt"/>
|
|
2346
|
+
<line num="11" count="4" type="stmt"/>
|
|
2347
|
+
<line num="18" count="0" type="stmt"/>
|
|
2348
|
+
<line num="22" count="1" type="stmt"/>
|
|
2349
|
+
</file>
|
|
2350
|
+
<file name="product.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/product.ts">
|
|
2351
|
+
<metrics statements="7" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2352
|
+
<line num="4" count="1" type="stmt"/>
|
|
2353
|
+
<line num="6" count="1" type="stmt"/>
|
|
2354
|
+
<line num="17" count="4" type="stmt"/>
|
|
2355
|
+
<line num="18" count="4" type="stmt"/>
|
|
2356
|
+
<line num="19" count="4" type="stmt"/>
|
|
2357
|
+
<line num="26" count="0" type="stmt"/>
|
|
2358
|
+
<line num="30" count="1" type="stmt"/>
|
|
2359
|
+
</file>
|
|
2360
|
+
<file name="recommendation-audience.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/recommendation-audience.ts">
|
|
2361
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2362
|
+
<line num="5" count="1" type="stmt"/>
|
|
2363
|
+
<line num="7" count="1" type="stmt"/>
|
|
2364
|
+
<line num="21" count="4" type="stmt"/>
|
|
2365
|
+
<line num="22" count="4" type="stmt"/>
|
|
2366
|
+
<line num="23" count="4" type="stmt"/>
|
|
2367
|
+
<line num="24" count="4" type="stmt"/>
|
|
2368
|
+
<line num="25" count="4" type="stmt"/>
|
|
2369
|
+
<line num="34" count="4" type="stmt"/>
|
|
2370
|
+
<line num="38" count="1" type="stmt"/>
|
|
2371
|
+
</file>
|
|
2372
|
+
<file name="recommendation.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/thirteen/models/recommendation.ts">
|
|
2373
|
+
<metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2374
|
+
<line num="9" count="1" type="stmt"/>
|
|
2375
|
+
<line num="11" count="1" type="stmt"/>
|
|
2376
|
+
<line num="34" count="4" type="stmt"/>
|
|
2377
|
+
<line num="35" count="4" type="stmt"/>
|
|
2378
|
+
<line num="36" count="4" type="stmt"/>
|
|
2379
|
+
<line num="37" count="4" type="stmt"/>
|
|
2380
|
+
<line num="38" count="4" type="stmt"/>
|
|
2381
|
+
<line num="39" count="4" type="stmt"/>
|
|
2382
|
+
<line num="40" count="4" type="stmt"/>
|
|
2383
|
+
<line num="41" count="4" type="stmt"/>
|
|
2384
|
+
<line num="42" count="4" type="stmt"/>
|
|
2385
|
+
<line num="43" count="4" type="stmt"/>
|
|
2386
|
+
<line num="44" count="4" type="stmt"/>
|
|
2387
|
+
<line num="51" count="1" type="stmt"/>
|
|
2388
|
+
<line num="55" count="1" type="stmt"/>
|
|
2389
|
+
</file>
|
|
2390
|
+
</package>
|
|
2391
|
+
<package name="test-utils.three">
|
|
2392
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2393
|
+
<file name="results.js" path="/Users/craigmartin/projects/pure-orm/test-utils/three/results.js">
|
|
2394
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2395
|
+
<line num="1" count="1" type="stmt"/>
|
|
2396
|
+
</file>
|
|
2397
|
+
</package>
|
|
2398
|
+
<package name="test-utils.twelve">
|
|
2399
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
2400
|
+
<file name="orm.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/twelve/orm.ts">
|
|
2401
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
2402
|
+
<line num="4" count="1" type="stmt"/>
|
|
2403
|
+
<line num="5" count="1" type="stmt"/>
|
|
2404
|
+
</file>
|
|
2405
|
+
</package>
|
|
2406
|
+
<package name="test-utils.twelve.models">
|
|
2407
|
+
<metrics statements="14" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="3"/>
|
|
2408
|
+
<file name="member.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/twelve/models/member.ts">
|
|
2409
|
+
<metrics statements="5" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
2410
|
+
<line num="3" count="1" type="stmt"/>
|
|
2411
|
+
<line num="5" count="1" type="stmt"/>
|
|
2412
|
+
<line num="11" count="1" type="stmt"/>
|
|
2413
|
+
<line num="18" count="0" type="stmt"/>
|
|
2414
|
+
<line num="22" count="1" type="stmt"/>
|
|
2415
|
+
</file>
|
|
2416
|
+
<file name="prompt.ts" path="/Users/craigmartin/projects/pure-orm/test-utils/twelve/models/prompt.ts">
|
|
2417
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2418
|
+
<line num="4" count="1" type="stmt"/>
|
|
2419
|
+
<line num="6" count="1" type="stmt"/>
|
|
2420
|
+
<line num="20" count="1" type="stmt"/>
|
|
2421
|
+
<line num="21" count="1" type="stmt"/>
|
|
2422
|
+
<line num="22" count="1" type="stmt"/>
|
|
2423
|
+
<line num="23" count="1" type="stmt"/>
|
|
2424
|
+
<line num="24" count="1" type="stmt"/>
|
|
2425
|
+
<line num="31" count="1" type="stmt"/>
|
|
2426
|
+
<line num="35" count="1" type="stmt"/>
|
|
2427
|
+
</file>
|
|
2428
|
+
</package>
|
|
2429
|
+
<package name="test-utils.two">
|
|
2430
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2431
|
+
<file name="results.js" path="/Users/craigmartin/projects/pure-orm/test-utils/two/results.js">
|
|
2432
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2433
|
+
<line num="1" count="1" type="stmt"/>
|
|
2434
|
+
</file>
|
|
2435
|
+
</package>
|
|
2436
|
+
</project>
|
|
2437
|
+
</coverage>
|