Home
last modified time | relevance | path

Searched refs:assertSegmentMatch (Results 1 – 1 of 1) sorted by relevance

/third_party/typescript/src/testRunner/unittests/services/
DpatternMatcher.ts96assertSegmentMatch("Foo", "Foo", { kind: ts.PatternMatchKind.exact, isCaseSensitive: true });
100assertSegmentMatch("foo", "Foo", { kind: ts.PatternMatchKind.exact, isCaseSensitive: false });
104assertSegmentMatch("Foo", "Fo", { kind: ts.PatternMatchKind.prefix, isCaseSensitive: true });
108assertSegmentMatch("Foo", "fo", { kind: ts.PatternMatchKind.prefix, isCaseSensitive: false });
112assertSegmentMatch("FogBar", "FB", { kind: ts.PatternMatchKind.camelCase, isCaseSensitive: true });
116assertSegmentMatch("FogBar", "FoB", { kind: ts.PatternMatchKind.camelCase, isCaseSensitive: true }…
120 assertSegmentMatch("FogBar", "FBB", undefined);
124 assertSegmentMatch("FogBar", "FoooB", undefined);
128 assertSegmentMatch("FogBarBaz", "FZ", undefined);
132 assertSegmentMatch("FogBarBaz", "ZZ", undefined);
[all …]