Skip to content

Commit

Permalink
Test order dependent tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rRajivramachandran committed Nov 6, 2023
1 parent c942c83 commit 62aac18
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@
<version>3.8.0</version>
<configuration>
<encoding>UTF-8</encoding>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
Expand Down Expand Up @@ -154,7 +154,7 @@
<version>3.0.0-M5</version>
<configuration>
<includes>
<include>**/bvt/**/*.java</include>
<include>**/CustomSuiteTest.java</include>
</includes>
</configuration>
</plugin>
Expand Down
16 changes: 16 additions & 0 deletions src/test/java/com/alibaba/fastjson/serializer/CustomSuiteTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.alibaba.fastjson.serializer;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

import com.alibaba.json.bvt.support.spring.FastJsonRedisSerializerTest;


@RunWith(Suite.class)
@Suite.SuiteClasses({
TestParse.class,
FastJsonRedisSerializerTest.class
})


public class CustomSuiteTest {
}

0 comments on commit 62aac18

Please sign in to comment.