Add unit tests for wxDecToHex()

This commit is contained in:
Artur Wieczorek
2017-02-23 20:01:48 +01:00
parent 2934f77660
commit 2ecd4a07ba
11 changed files with 136 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ TEST_OBJECTS = \
$(OBJS)\test_vararg.o \
$(OBJS)\test_crt.o \
$(OBJS)\test_vsnprintf.o \
$(OBJS)\test_hexconv.o \
$(OBJS)\test_bstream.o \
$(OBJS)\test_datastreamtest.o \
$(OBJS)\test_ffilestream.o \
@@ -687,6 +688,9 @@ $(OBJS)\test_crt.o: ./strings/crt.cpp
$(OBJS)\test_vsnprintf.o: ./strings/vsnprintf.cpp
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\test_hexconv.o: ./strings/hexconv.cpp
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\test_bstream.o: ./streams/bstream.cpp
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<