Skip to content

Commit

Permalink
Moved all tests into single project
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed May 3, 2018
1 parent c2b4ea3 commit a56c05b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
package com.uploadedlobster.PwdHash;

import android.support.test.runner.AndroidJUnit4;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

import com.uploadedlobster.PwdHash.algorithm.DomainExtractor;
Expand All @@ -12,11 +16,12 @@
/**
* @author Philipp Wolfer
*/
@RunWith(AndroidJUnit4.class)
public class DomainExtractorTest {

private static HashMap<String, String> testSamples;

@Before
@Before
public void setUp() throws Exception {
testSamples = new HashMap<>();
testSamples.put("example.com", "example.com");
Expand Down

0 comments on commit a56c05b

Please sign in to comment.