Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2214883
This commit is contained in:
parent
583954e3eb
commit
ede3856d8f
|
|
@ -7,6 +7,7 @@ import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
|
|
||||||
import org.compiere.model.MProduct;
|
import org.compiere.model.MProduct;
|
||||||
|
import org.compiere.model.MProductPrice;
|
||||||
import org.compiere.model.MProductPricing;
|
import org.compiere.model.MProductPricing;
|
||||||
import org.compiere.model.X_I_Product;
|
import org.compiere.model.X_I_Product;
|
||||||
import org.compiere.util.DB;
|
import org.compiere.util.DB;
|
||||||
|
|
@ -93,12 +94,17 @@ public class MProductTest extends AdempiereTestCase {
|
||||||
|
|
||||||
boolean saveResult = m_product.save();
|
boolean saveResult = m_product.save();
|
||||||
assertEquals("Create new product.", true, saveResult);
|
assertEquals("Create new product.", true, saveResult);
|
||||||
} */
|
}
|
||||||
|
|
||||||
public void testSetBaseInfo() {
|
public void testSetBaseInfo() {
|
||||||
MProductPricing prodprice = new MProductPricing(122,100, new BigDecimal (100),true);
|
MProductPricing prodprice = new MProductPricing(122,100, new BigDecimal (100),true);
|
||||||
int uom = 0;
|
int uom = 0;
|
||||||
uom = prodprice.getC_UOM_ID();
|
uom = prodprice.getC_UOM_ID();
|
||||||
assertTrue("UOM must be correct", uom == 100);
|
assertTrue("UOM must be correct", uom == 100);
|
||||||
|
} */
|
||||||
|
|
||||||
|
public void testPrice() {
|
||||||
|
MProductPrice test = MProductPrice.get(getCtx(), 105, 124, getTrxName());
|
||||||
|
assertTrue("Confirming Prod ID to be true", test.getM_Product_ID() == 124);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue