本文整理匯總了Golang中models.Product.IsOrganic方法的典型用法代碼示例。如果您正苦於以下問題:Golang Product.IsOrganic方法的具體用法?Golang Product.IsOrganic怎麽用?Golang Product.IsOrganic使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.Product
的用法示例。
在下文中一共展示了Product.IsOrganic方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ConvertProductToViewModel
func ConvertProductToViewModel(product models.Product) viewmodels.Product {
result := viewmodels.Product{
Name: product.Name(),
DescriptionShort: product.DescriptionShort(),
DescriptionLong: product.DescriptionLong(),
PricePerLitre: product.PricePerLitre(),
PricePer10Litre: product.PricePer10Litre(),
Origin: product.Origin(),
IsOrganic: product.IsOrganic(),
ImageUrl: product.ImageUrl(),
Id: product.Id(),
}
return result
}
示例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.SetPricePerLitre(42.127)
product.SetPricePer10Litre(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.PricePerLitre() != result.PricePerLitre {
t.Fail()
}
if product.PricePer10Litre() != result.PricePer10Litre {
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()
}
}