forked from openboxes/openboxes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add loadtest phrase; fix a bug in bootstrap for test env
- Loading branch information
PZhao
committed
Dec 6, 2012
1 parent
89e585f
commit 4555dbf
Showing
3 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
test/loadtest/org/pih/warehouse/inventory/InventoryServiceTests.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.pih.warehouse.inventory | ||
|
||
|
||
import org.pih.warehouse.product.Product | ||
import org.pih.warehouse.core.Constants | ||
import org.pih.warehouse.core.Location | ||
import org.pih.warehouse.core.LocationType | ||
import org.pih.warehouse.core.Tag; | ||
import org.pih.warehouse.core.User; | ||
|
||
class InventoryServiceTests extends GroovyTestCase { | ||
void test_something() { | ||
def inventoryService = new InventoryService() | ||
assert inventoryService | ||
} | ||
|
||
} |