Skip to content

Commit

Permalink
Cosmetic fixes and release version update
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureAD\ArpitShah committed Aug 14, 2024
1 parent 305c5a2 commit b8501a3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 20 deletions.
13 changes: 1 addition & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.theartos</groupId>
<artifactId>artos</artifactId>
<version>1.0.00</version>
<version>1.0.01</version>

<!-- Organisation Info -->
<organization>
Expand Down Expand Up @@ -62,17 +62,6 @@
<role>contributor</role>
</roles>
</developer>
<developer>
<name>Dulani Kumarage</name>
<id>DKu</id>
<email>artos.framework@gmail.com</email>
<url>https://www.theartos.com</url>
<organization>Artos</organization>
<organizationUrl>http://www.theartos.com</organizationUrl>
<roles>
<role>contributor</role>
</roles>
</developer>
</developers>

<!-- Source Repo Info -->
Expand Down
4 changes: 2 additions & 2 deletions src/com/artos/framework/infra/BDDStep.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public BDDStep(String stepAction, String stepDescription, LinkedHashMap<String,
/**
* Returns step description
*
* @return step description
* @return step description step description
*/
public String getStepDescription() {
return stepDescription;
Expand All @@ -66,7 +66,7 @@ public String getStepDescription() {
/**
* Set step description
*
* @param stepDescription
* @param stepDescription step description
*/
public void setStepDescription(String stepDescription) {
this.stepDescription = stepDescription;
Expand Down
2 changes: 1 addition & 1 deletion src/com/artos/framework/infra/ScanTestSuite.java
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ private List<List<TestObjectWrapper>> getListOfTestsListPerFQCN(List<TestObjectW
* @param sortBySeqNum Enables sorting of the test cases (Sorting happens within package scope)
* @param removeSkippedTests Enables removal of test cases which are marked 'Skip'
* @return List of {@code TestExecutable}
* @throws Exception
* @throws Exception exceptions
*/
public List<TestExecutable> getTestList(boolean sortBySeqNum, boolean removeSkippedTests) throws Exception {
List<TestExecutable> testList = new ArrayList<TestExecutable>();
Expand Down
1 change: 0 additions & 1 deletion src/com/artos/framework/infra/TestContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,6 @@ public String printMethodName() {
/**
* Generates test plan using annotation provided in the test case classes
*
* @param context Test Context
* @param removeSkippedTests true = remove skipped test from test plan, false =
* print all test plan
* @return {@code TestPlanWrapper} list
Expand Down
2 changes: 1 addition & 1 deletion src/com/artos/interfaces/ConnectableMessageParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public interface ConnectableMessageParser {
/**
* method to return left over bytes after parsing provided input
*
* @return
* @return byte array
*/
public byte[] getLeftOverBytes();
}
6 changes: 3 additions & 3 deletions src/com/artos/utils/PromptBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,8 @@ private void setInputBoxText(String inputBoxText) {
* width panel. Ownership is on user to ensure content fit on the screen.
* Different resolution of screens will have different experience
*
* @param actionKeyWord
* @param instruction
* @param actionKeyWord action keyword
* @param instruction instruction
*/
public void addText(AKW actionKeyWord, String instruction) {
if (null != instruction) {
Expand All @@ -563,7 +563,7 @@ public void addText(AKW actionKeyWord, String instruction) {
* width panel. Ownership is on user to ensure content fit on the screen.
* Different resolution of screens will have different experience
*
* @param instruction
* @param instruction instruction
*/
public void addText(String instruction) {
addText(AKW.NONE, instruction);
Expand Down

0 comments on commit b8501a3

Please sign in to comment.