Skip to content

Commit b595295

Browse files
committed
Renamed REGISTRY_UNIT_TEST to REGISTRY_WSJCPP_UNIT_TEST
1 parent d8e6857 commit b595295

20 files changed

+21
-21
lines changed

src.wsjcpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Automaticly generated by wsjcpp@v0.0.1
22
cmake_minimum_required(VERSION 3.0)
33

4-
add_definitions(-DWSJCPP_VERSION="v0.1.0")
4+
add_definitions(-DWSJCPP_VERSION="v0.1.1")
55
add_definitions(-DWSJCPP_NAME="wsjcpp-core")
66

77
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")

src/wsjcpp_unit_tests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class WsjcppUnitTests {
3232
};
3333

3434
// RegistryCmdHandler
35-
#define REGISTRY_UNIT_TEST( classname ) \
35+
#define REGISTRY_WSJCPP_UNIT_TEST( classname ) \
3636
static classname * pRegistryWsjcppUnitTest ## classname = new classname(); \
3737

3838

unit-tests.wsjcpp/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.0)
33

44
project(unit-tests C CXX)
5-
add_definitions(-DWSJCPP_VERSION="ut-v0.1.0")
5+
add_definitions(-DWSJCPP_VERSION="ut-v0.1.1")
66
add_definitions(-DWSJCPP_NAME="unit-tests-wsjcpp-core")
77

88
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
@@ -19,7 +19,7 @@ set (WSJCPP_SOURCES "")
1919
find_package(Threads REQUIRED)
2020
list (APPEND WSJCPP_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
2121

22-
# wsjcpp-core:v0.1.0
22+
# wsjcpp-core:v0.1.1
2323
list (APPEND WSJCPP_INCLUDE_DIRS "../src")
2424
list (APPEND WSJCPP_SOURCES "../src/wsjcpp_core.cpp")
2525
list (APPEND WSJCPP_SOURCES "../src/wsjcpp_core.h")

unit-tests.wsjcpp/src/unit_test_core_extract_filename.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <iostream>
44
#include <wsjcpp_core.h>
55

6-
REGISTRY_UNIT_TEST(UnitTestCoreExtractFilename)
6+
REGISTRY_WSJCPP_UNIT_TEST(UnitTestCoreExtractFilename)
77

88
UnitTestCoreExtractFilename::UnitTestCoreExtractFilename()
99
: WsjcppUnitTestBase("UnitTestCoreExtractFilename") {

unit-tests.wsjcpp/src/unit_test_core_normalize_path.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <iostream>
44
#include <wsjcpp_core.h>
55

6-
REGISTRY_UNIT_TEST(UnitTestCoreNormalizePath)
6+
REGISTRY_WSJCPP_UNIT_TEST(UnitTestCoreNormalizePath)
77

88
UnitTestCoreNormalizePath::UnitTestCoreNormalizePath()
99
: WsjcppUnitTestBase("UnitTestCoreNormalizePath") {

unit-tests.wsjcpp/src/unit_test_core_uuid.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <iostream>
44
#include <wsjcpp_core.h>
55

6-
REGISTRY_UNIT_TEST(UnitTestCoreUuid)
6+
REGISTRY_WSJCPP_UNIT_TEST(UnitTestCoreUuid)
77

88

99
UnitTestCoreUuid::UnitTestCoreUuid()

unit-tests.wsjcpp/src/unit_test_create_empty_file.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <vector>
33
#include <wsjcpp_core.h>
44

5-
REGISTRY_UNIT_TEST(UnitTestCreateEmptyFile)
5+
REGISTRY_WSJCPP_UNIT_TEST(UnitTestCreateEmptyFile)
66

77
UnitTestCreateEmptyFile::UnitTestCreateEmptyFile()
88
: WsjcppUnitTestBase("UnitTestCreateEmptyFile") {

unit-tests.wsjcpp/src/unit_test_create_uuid.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <vector>
33
#include <wsjcpp_core.h>
44

5-
REGISTRY_UNIT_TEST(UnitTestCreateUuid)
5+
REGISTRY_WSJCPP_UNIT_TEST(UnitTestCreateUuid)
66

77
UnitTestCreateUuid::UnitTestCreateUuid()
88
: WsjcppUnitTestBase("UnitTestCreateUuid") {

unit-tests.wsjcpp/src/unit_test_decode_uri_component.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <vector>
33
#include <wsjcpp_core.h>
44

5-
REGISTRY_UNIT_TEST(UnitTestDecodeUriComponent)
5+
REGISTRY_WSJCPP_UNIT_TEST(UnitTestDecodeUriComponent)
66

77
UnitTestDecodeUriComponent::UnitTestDecodeUriComponent()
88
: WsjcppUnitTestBase("UnitTestDecodeUriComponent") {

unit-tests.wsjcpp/src/unit_test_encode_uri_component.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <vector>
33
#include <wsjcpp_core.h>
44

5-
REGISTRY_UNIT_TEST(UnitTestEncodeUriComponent)
5+
REGISTRY_WSJCPP_UNIT_TEST(UnitTestEncodeUriComponent)
66

77
UnitTestEncodeUriComponent::UnitTestEncodeUriComponent()
88
: WsjcppUnitTestBase("UnitTestEncodeUriComponent") {

0 commit comments

Comments
 (0)