1 Star 0 Fork 1

1991wangliang / activiti-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CONTRIBUTING.md 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
Salaboy 提交于 2017-08-02 15:54 . adding spring boot sample and parent pom

If you want to contribute get in touch with the project members and ask for guidance. This project is a community driven project, so get in touch if you want to participate.

Unit tests

Activiti uses now AssertJ as alternative to default JUnit assertions. This makes tests more readable and provides clearer failure messages. Please, make sure that you are using AssertJ assertions for every new test. I.e.

  • assertThat(myBoolean).isTrue(); instead of assertTrue(myBoolean);
  • assertThat(actual).isEqualTo(expected); instead of assertEquals(expected, actual);
  • assertThat(myList).containsExactly("a", "b", "c"); instead of assertTrue(myList.contains("a", "b", "c"));

Branches naming convention

If you are creating branches directly in the main repository, this is the naming convention to be used for branches:

  • username-issueNumber-anythingYouWant
1
https://gitee.com/wangliang1991/activiti-examples.git
git@gitee.com:wangliang1991/activiti-examples.git
wangliang1991
activiti-examples
activiti-examples
master

搜索帮助