Skip to content

ReverseWord & ReverseWordsTest #2022

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 22, 2020

Conversation

loveshdongre
Copy link

@loveshdongre loveshdongre commented Nov 5, 2020

Describe your change:

  • Add an algorithm?
  • Fix a bug or typo in an existing algorithm?
  • Documentation change?

References

Checklist:

  • I have read CONTRIBUTING.md.
  • This pull request is all my own work -- I have not plagiarized.
  • I know that pull requests will not be merged if they fail the automated tests.
  • This PR only changes one algorithm file. To ease review, please open separate PRs for separate algorithms.
  • All new Java files are placed inside an existing directory.
  • All filenames are in all uppercase characters with no spaces or dashes.
  • All functions and variable names follow Java naming conventions.
  • All new algorithms have a URL in its comments that points to Wikipedia or other similar explanation.
  • If this pull request resolves one or more open issues then the commit message contains Fixes: #{$ISSUE_NO}.

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

class ReveresWordsTest extends ReverseWords {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not proper way to write tests.

If you don't know how a test is to be written, please check DecimalToAnyBaseTestjava.

As you can see, it does not extend its source class. Instead it initializes its object with help of constructor.

Please do needful.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed the import line and inheritance from ReverseWordsTest and initialized an object of ReverseWords in it.

* @param s the string to convert
* @return the {@code String}, converted to a string with reveresed words.
*/
public static String isReverseWords(String s) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Method name is kind of not in sync with what it does, i.e.

 public static String isReverseWords(String s) {...} // Suggests that this will return boolean value. 

 public static String returnReverseWords(String s) {...} // Suggests that this will return reversed string value. 

NOTE : This is just an observation or suggestion.

Copy link
Author

@loveshdongre loveshdongre Nov 14, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I renamed isReverseWords to returnReverseWords

@ayaankhan98 ayaankhan98 merged commit 1012ff7 into TheAlgorithms:Development Nov 22, 2020
@JackZeled0n
Copy link

I don't understand how you use the assertEquals. At the moment when I run the test java throw an exception because in your method return a string and then you compare with a boolean

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants