fixed app dir problem with update to gradle.

This commit is contained in:
Manfred Karrer 2014-08-28 18:24:42 +02:00
parent fb7397eb48
commit fb89f087f0
18 changed files with 206 additions and 242 deletions

View file

@ -18,7 +18,7 @@
package io.bitsquare;
import io.bitsquare.btc.RestrictionsTest;
import io.bitsquare.gui.trade.createoffer.CreateOfferPresenterTest;
import io.bitsquare.gui.trade.createoffer.CreateOfferPMTest;
import io.bitsquare.gui.util.BSFormatterTest;
import io.bitsquare.gui.util.BitSquareConverterTest;
import io.bitsquare.gui.util.BitSquareNumberValidatorTest;
@ -36,7 +36,7 @@ import org.junit.runners.Suite;
P2PNodeTest.class,
FiatValidatorTest.class,
RestrictionsTest.class,
CreateOfferPresenterTest.class,
CreateOfferPMTest.class,
BSFormatterTest.class
})

View file

@ -33,8 +33,8 @@ import org.slf4j.LoggerFactory;
import static org.junit.Assert.*;
public class CreateOfferPresenterTest {
private static final Logger log = LoggerFactory.getLogger(CreateOfferPresenterTest.class);
public class CreateOfferPMTest {
private static final Logger log = LoggerFactory.getLogger(CreateOfferPMTest.class);
@Test
public void testBindings() {
@ -43,7 +43,7 @@ public class CreateOfferPresenterTest {
BSFormatter.setLocale(Locale.US);
BSFormatter.setFiatCurrencyCode("USD");
CreateOfferPresenter presenter = new CreateOfferPresenter(model);
CreateOfferPM presenter = new CreateOfferPM(model);
presenter.onViewInitialized();
model.collateralAsLong.set(100);