Skip to content

Commit

Permalink
[Drools_Decision_Table_Camel] Test names changes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Feb 3, 2013
1 parent 8992864 commit a1d1297
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class ProductServiceImplTest {
ProductService objectUnderTest;

@Test
public void testRunProductLogicUserPlUnderageElectronicCountryPLQuantity10() throws Exception {
public void testRunProductLogicUserPlUnderageElectronicCountryPL() throws Exception {
int initialPrice = 1000;
int userAge = 6;
int quantity = 10;
Expand All @@ -50,7 +50,7 @@ public void testRunProductLogicUserPlUnderageElectronicCountryPLQuantity10() thr
}

@Test
public void testRunProductLogicUserPlAge19ElectronicCountryPLQuantity1() throws Exception {
public void testRunProductLogicUserPlHighAgeElectronicCountryPLLowQuantity() throws Exception {
int initialPrice = 1000;
int userAge = 19;
int quantity = 1;
Expand All @@ -69,7 +69,7 @@ public void testRunProductLogicUserPlAge19ElectronicCountryPLQuantity1() throws
}

@Test
public void testRunProductLogicUserPlAge19ElectronicCountryPLQuantity10() throws Exception {
public void testRunProductLogicUserPlHighAgeElectronicCountryPLHighQuantity() throws Exception {
int initialPrice = 1000;
int userAge = 19;
int quantity = 8;
Expand All @@ -89,7 +89,7 @@ public void testRunProductLogicUserPlAge19ElectronicCountryPLQuantity10() throws
}

@Test
public void testRunProductLogicUserUsaAge19ElectronicCountryPLQuantity10() throws Exception {
public void testRunProductLogicUserUsaLowAgeElectronicCountryPLHighQuantity() throws Exception {
int initialPrice = 1000;
int userAge = 19;
int quantity = 8;
Expand All @@ -108,7 +108,7 @@ public void testRunProductLogicUserUsaAge19ElectronicCountryPLQuantity10() throw
}

@Test
public void testRunProductLogicUserUsaAge22MedicalCountrySWEQuantity4() throws Exception {
public void testRunProductLogicUserUsaHighAgeMedicalCountrySWELowQuantity() throws Exception {
int initialPrice = 1000;
int userAge = 22;
int quantity = 4;
Expand All @@ -127,7 +127,7 @@ public void testRunProductLogicUserUsaAge22MedicalCountrySWEQuantity4() throws E
}

@Test
public void testRunProductLogicUserUsaAge22MedicalCountrySWEQuantity8() throws Exception {
public void testRunProductLogicUserUsaHighAgeMedicalCountrySWEHighQuantity() throws Exception {
int initialPrice = 1000;
int userAge = 22;
int quantity = 8;
Expand Down

0 comments on commit a1d1297

Please sign in to comment.