forked from alibaba/weex
-
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.
- Loading branch information
Showing
381 changed files
with
21,080 additions
and
8,986 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
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
39 changes: 39 additions & 0 deletions
39
...id/playground/app/src/androidTest/java/com/alibaba/weex/uitest/TC_AG/AG_AHref_A_Href.java
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,39 @@ | ||
package com.alibaba.weex.uitest.TC_AG; | ||
import com.alibaba.weex.WXPageActivity; | ||
import com.alibaba.weex.util.TestFlow; | ||
import java.util.HashMap; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class AG_AHref_A_Href extends TestFlow { | ||
public AG_AHref_A_Href() { | ||
super(WXPageActivity.class); | ||
} | ||
|
||
@Before | ||
public void setUp() throws InterruptedException { | ||
super.setUp(); | ||
HashMap testMap = new <String, Object> HashMap(); | ||
testMap.put("testComponet", "AG_AHref"); | ||
testMap.put("testChildCaseInit", "AG_AHref_A_Href"); | ||
testMap.put("step1",new HashMap(){ | ||
{ | ||
put("click", "href0"); | ||
put("screenshot", "AG_AHref_A_Href_01_href0"); | ||
} | ||
}); | ||
testMap.put("step2",new HashMap(){ | ||
{ | ||
put("click", "href1"); | ||
put("screenshot", "AG_AHref_A_Href_02_href1"); | ||
} | ||
}); | ||
super.setTestMap(testMap); | ||
} | ||
|
||
@Test | ||
public void doTest(){ | ||
super.testByTestMap(); | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
...p/src/androidTest/java/com/alibaba/weex/uitest/TC_AG/AG_Border_A_Border_Bottom_Color.java
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,39 @@ | ||
package com.alibaba.weex.uitest.TC_AG; | ||
import com.alibaba.weex.WXPageActivity; | ||
import com.alibaba.weex.util.TestFlow; | ||
import java.util.HashMap; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class AG_Border_A_Border_Bottom_Color extends TestFlow { | ||
public AG_Border_A_Border_Bottom_Color() { | ||
super(WXPageActivity.class); | ||
} | ||
|
||
@Before | ||
public void setUp() throws InterruptedException { | ||
super.setUp(); | ||
HashMap testMap = new <String, Object> HashMap(); | ||
testMap.put("testComponet", "AG_Border"); | ||
testMap.put("testChildCaseInit", "AG_Border_A_Border_Bottom_Color"); | ||
testMap.put("step1",new HashMap(){ | ||
{ | ||
put("click", "#FF0000"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Color_01_#FF0000"); | ||
} | ||
}); | ||
testMap.put("step2",new HashMap(){ | ||
{ | ||
put("click", "#00FFFF"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Color_02_#00FFFF"); | ||
} | ||
}); | ||
super.setTestMap(testMap); | ||
} | ||
|
||
@Test | ||
public void doTest(){ | ||
super.testByTestMap(); | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
...androidTest/java/com/alibaba/weex/uitest/TC_AG/AG_Border_A_Border_Bottom_Left_Radius.java
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,39 @@ | ||
package com.alibaba.weex.uitest.TC_AG; | ||
import com.alibaba.weex.WXPageActivity; | ||
import com.alibaba.weex.util.TestFlow; | ||
import java.util.HashMap; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class AG_Border_A_Border_Bottom_Left_Radius extends TestFlow { | ||
public AG_Border_A_Border_Bottom_Left_Radius() { | ||
super(WXPageActivity.class); | ||
} | ||
|
||
@Before | ||
public void setUp() throws InterruptedException { | ||
super.setUp(); | ||
HashMap testMap = new <String, Object> HashMap(); | ||
testMap.put("testComponet", "AG_Border"); | ||
testMap.put("testChildCaseInit", "AG_Border_A_Border_Bottom_Left_Radius"); | ||
testMap.put("step1",new HashMap(){ | ||
{ | ||
put("click", "10"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Left_Radius_01_10"); | ||
} | ||
}); | ||
testMap.put("step2",new HashMap(){ | ||
{ | ||
put("click", "20"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Left_Radius_02_20"); | ||
} | ||
}); | ||
super.setTestMap(testMap); | ||
} | ||
|
||
@Test | ||
public void doTest(){ | ||
super.testByTestMap(); | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
...ndroidTest/java/com/alibaba/weex/uitest/TC_AG/AG_Border_A_Border_Bottom_Right_Radius.java
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,39 @@ | ||
package com.alibaba.weex.uitest.TC_AG; | ||
import com.alibaba.weex.WXPageActivity; | ||
import com.alibaba.weex.util.TestFlow; | ||
import java.util.HashMap; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class AG_Border_A_Border_Bottom_Right_Radius extends TestFlow { | ||
public AG_Border_A_Border_Bottom_Right_Radius() { | ||
super(WXPageActivity.class); | ||
} | ||
|
||
@Before | ||
public void setUp() throws InterruptedException { | ||
super.setUp(); | ||
HashMap testMap = new <String, Object> HashMap(); | ||
testMap.put("testComponet", "AG_Border"); | ||
testMap.put("testChildCaseInit", "AG_Border_A_Border_Bottom_Right_Radius"); | ||
testMap.put("step1",new HashMap(){ | ||
{ | ||
put("click", "10"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Right_Radius_01_10"); | ||
} | ||
}); | ||
testMap.put("step2",new HashMap(){ | ||
{ | ||
put("click", "20"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Right_Radius_02_20"); | ||
} | ||
}); | ||
super.setTestMap(testMap); | ||
} | ||
|
||
@Test | ||
public void doTest(){ | ||
super.testByTestMap(); | ||
} | ||
|
||
} |
45 changes: 45 additions & 0 deletions
45
...p/src/androidTest/java/com/alibaba/weex/uitest/TC_AG/AG_Border_A_Border_Bottom_Width.java
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,45 @@ | ||
package com.alibaba.weex.uitest.TC_AG; | ||
import com.alibaba.weex.WXPageActivity; | ||
import com.alibaba.weex.util.TestFlow; | ||
import java.util.HashMap; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class AG_Border_A_Border_Bottom_Width extends TestFlow { | ||
public AG_Border_A_Border_Bottom_Width() { | ||
super(WXPageActivity.class); | ||
} | ||
|
||
@Before | ||
public void setUp() throws InterruptedException { | ||
super.setUp(); | ||
HashMap testMap = new <String, Object> HashMap(); | ||
testMap.put("testComponet", "AG_Border"); | ||
testMap.put("testChildCaseInit", "AG_Border_A_Border_Bottom_Width"); | ||
testMap.put("step1",new HashMap(){ | ||
{ | ||
put("click", "0"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Width_01_0"); | ||
} | ||
}); | ||
testMap.put("step2",new HashMap(){ | ||
{ | ||
put("click", "1"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Width_02_1"); | ||
} | ||
}); | ||
testMap.put("step3",new HashMap(){ | ||
{ | ||
put("click", "3"); | ||
put("screenshot", "AG_Border_A_Border_Bottom_Width_03_3"); | ||
} | ||
}); | ||
super.setTestMap(testMap); | ||
} | ||
|
||
@Test | ||
public void doTest(){ | ||
super.testByTestMap(); | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
...ound/app/src/androidTest/java/com/alibaba/weex/uitest/TC_AG/AG_Border_A_Border_Color.java
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,39 @@ | ||
package com.alibaba.weex.uitest.TC_AG; | ||
import com.alibaba.weex.WXPageActivity; | ||
import com.alibaba.weex.util.TestFlow; | ||
import java.util.HashMap; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class AG_Border_A_Border_Color extends TestFlow { | ||
public AG_Border_A_Border_Color() { | ||
super(WXPageActivity.class); | ||
} | ||
|
||
@Before | ||
public void setUp() throws InterruptedException { | ||
super.setUp(); | ||
HashMap testMap = new <String, Object> HashMap(); | ||
testMap.put("testComponet", "AG_Border"); | ||
testMap.put("testChildCaseInit", "AG_Border_A_Border_Color"); | ||
testMap.put("step1",new HashMap(){ | ||
{ | ||
put("click", "#FF0000"); | ||
put("screenshot", "AG_Border_A_Border_Color_01_#FF0000"); | ||
} | ||
}); | ||
testMap.put("step2",new HashMap(){ | ||
{ | ||
put("click", "#00FFFF"); | ||
put("screenshot", "AG_Border_A_Border_Color_02_#00FFFF"); | ||
} | ||
}); | ||
super.setTestMap(testMap); | ||
} | ||
|
||
@Test | ||
public void doTest(){ | ||
super.testByTestMap(); | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
...app/src/androidTest/java/com/alibaba/weex/uitest/TC_AG/AG_Border_A_Border_Left_Color.java
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,39 @@ | ||
package com.alibaba.weex.uitest.TC_AG; | ||
import com.alibaba.weex.WXPageActivity; | ||
import com.alibaba.weex.util.TestFlow; | ||
import java.util.HashMap; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class AG_Border_A_Border_Left_Color extends TestFlow { | ||
public AG_Border_A_Border_Left_Color() { | ||
super(WXPageActivity.class); | ||
} | ||
|
||
@Before | ||
public void setUp() throws InterruptedException { | ||
super.setUp(); | ||
HashMap testMap = new <String, Object> HashMap(); | ||
testMap.put("testComponet", "AG_Border"); | ||
testMap.put("testChildCaseInit", "AG_Border_A_Border_Left_Color"); | ||
testMap.put("step1",new HashMap(){ | ||
{ | ||
put("click", "#FF0000"); | ||
put("screenshot", "AG_Border_A_Border_Left_Color_01_#FF0000"); | ||
} | ||
}); | ||
testMap.put("step2",new HashMap(){ | ||
{ | ||
put("click", "#00FFFF"); | ||
put("screenshot", "AG_Border_A_Border_Left_Color_02_#00FFFF"); | ||
} | ||
}); | ||
super.setTestMap(testMap); | ||
} | ||
|
||
@Test | ||
public void doTest(){ | ||
super.testByTestMap(); | ||
} | ||
|
||
} |
Oops, something went wrong.