2013-01-25 00:46:29 +00:00
|
|
|
// Unit Tests for Scintilla internal data structures
|
|
|
|
|
|
|
|
/*
|
|
|
|
Currently tested:
|
|
|
|
SplitVector
|
|
|
|
Partitioning
|
|
|
|
RunStyles
|
|
|
|
ContractionState
|
2015-06-07 21:19:26 +00:00
|
|
|
CharClassify
|
2013-01-25 00:46:29 +00:00
|
|
|
Decoration
|
|
|
|
DecorationList
|
2015-06-07 21:19:26 +00:00
|
|
|
CellBuffer
|
2019-05-04 18:14:48 +00:00
|
|
|
UniConversion
|
2015-06-07 21:19:26 +00:00
|
|
|
|
|
|
|
To do:
|
2013-01-25 00:46:29 +00:00
|
|
|
PerLine *
|
|
|
|
Range
|
|
|
|
StyledText
|
|
|
|
CaseFolder ...
|
|
|
|
Document
|
|
|
|
RESearch
|
|
|
|
Selection
|
|
|
|
Style
|
|
|
|
|
|
|
|
lexlib:
|
|
|
|
Accessor
|
|
|
|
LexAccessor
|
|
|
|
CharacterSet
|
|
|
|
OptionSet
|
|
|
|
PropSetSimple
|
|
|
|
StyleContext
|
|
|
|
WordList
|
|
|
|
*/
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdarg>
|
2013-01-25 00:46:29 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
#include <string_view>
|
|
|
|
#include <vector>
|
|
|
|
#include <memory>
|
|
|
|
|
2013-01-25 00:46:29 +00:00
|
|
|
#include "Platform.h"
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
// Want to avoid misleading indentation warnings in catch.hpp but the pragma
|
|
|
|
// may not be available so protect by turning off pragma warnings
|
|
|
|
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
|
|
|
#pragma GCC diagnostic ignored "-Wpragmas"
|
|
|
|
#if !defined(__clang__)
|
|
|
|
#pragma GCC diagnostic ignored "-Wmisleading-indentation"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
|
|
|
|
#include "catch.hpp"
|
2013-01-25 00:46:29 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
using namespace Scintilla;
|
|
|
|
|
2013-01-25 00:46:29 +00:00
|
|
|
// Needed for PLATFORM_ASSERT in code being tested
|
|
|
|
|
|
|
|
void Platform::Assert(const char *c, const char *file, int line) {
|
|
|
|
fprintf(stderr, "Assertion [%s] failed at %s %d\n", c, file, line);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
void Platform::DebugPrintf(const char *format, ...) {
|
|
|
|
char buffer[2000];
|
|
|
|
va_list pArguments;
|
|
|
|
va_start(pArguments, format);
|
|
|
|
vsprintf(buffer, format, pArguments);
|
|
|
|
va_end(pArguments);
|
|
|
|
fprintf(stderr, "%s", buffer);
|
2013-01-25 00:46:29 +00:00
|
|
|
}
|