Skip to content

Commit

Permalink
Added executables to run uit tests on data_conversion.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
maverick12345678 committed May 30, 2020
1 parent e532cb2 commit 5eff677
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions C++/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,12 @@ target_link_libraries(disjoint_set test_runner)
add_executable(binary_search_tree
test/data_structure/tree/binary_search_tree.cpp)
target_link_libraries(binary_search_tree test_runner)

# ============================================================================
# Utilities
# ============================================================================

# Data conversion
add_executable(data_conversion
test/utils/data_conversion.cpp)
target_link_libraries(data_conversion test_runner)

1 comment on commit 5eff677

@alxmjo
Copy link
Collaborator

@alxmjo alxmjo commented on 5eff677 May 30, 2020

Choose a reason for hiding this comment

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

See the red circle with the line through it on the line above? Make sure to add a newline at the end of all of your files. See here: https://stackoverflow.com/questions/5813311/no-newline-at-end-of-file

Please sign in to comment.