當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Product.PricePerLiter方法代碼示例

本文整理匯總了Golang中models.Product.PricePerLiter方法的典型用法代碼示例。如果您正苦於以下問題:Golang Product.PricePerLiter方法的具體用法?Golang Product.PricePerLiter怎麽用?Golang Product.PricePerLiter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在models.Product的用法示例。


在下文中一共展示了Product.PricePerLiter方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: ConvertProductToViewModel

func ConvertProductToViewModel(product models.Product) viewmodels.Product {
    result := viewmodels.Product{
        Name:             product.Name(),
        DescriptionShort: product.DescriptionShort(),
        DescriptionLong:  product.DescriptionLong(),
        PricePerLiter:    product.PricePerLiter(),
        PricePer10Liter:  product.PricePer10Liter(),
        Origin:           product.Origin(),
        IsOrganic:        product.IsOrganic(),
        ImageUrl:         product.ImageUrl(),
        Id:               product.Id(),
    }

    return result
}
開發者ID:brewinvaz,項目名稱:mvc-webapp,代碼行數:15,代碼來源:product.go

示例2: Test_ConvertsProductToViewModel

func Test_ConvertsProductToViewModel(t *testing.T) {
    product := models.Product{}
    product.SetName("the name")
    product.SetDescriptionShort("the short description")
    product.SetDescriptionLong("the long description")
    product.SetPricePerLiter(42.127)
    product.SetPricePer10Liter(27.314)
    product.SetOrigin("the origin")
    product.SetIsOrganic(true)
    product.SetImageUrl("the image URL")
    product.SetId(42)

    result := ConvertProductToViewModel(product)

    if product.Name() != result.Name {
        t.Fail()
    }
    if product.DescriptionShort() != result.DescriptionShort {
        t.Fail()
    }
    if product.DescriptionLong() != result.DescriptionLong {
        t.Fail()
    }
    if product.PricePerLiter() != result.PricePerLiter {
        t.Fail()
    }
    if product.PricePer10Liter() != result.PricePer10Liter {
        t.Fail()
    }
    if product.Origin() != result.Origin {
        t.Fail()
    }
    if product.IsOrganic() != result.IsOrganic {
        t.Fail()
    }
    if product.ImageUrl() != result.ImageUrl {
        t.Fail()
    }
    if product.Id() != result.Id {
        t.Fail()
    }
}
開發者ID:brewinvaz,項目名稱:mvc-webapp,代碼行數:42,代碼來源:product_test.go


注:本文中的models.Product.PricePerLiter方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。