mirror of
https://github.com/google/googletest.git
synced 2026-06-16 00:46:08 +08:00
21 lines
595 B
Plaintext
21 lines
595 B
Plaintext
#summary Tests how wiki works on code.google.com
|
|
|
|
= Introduction =
|
|
|
|
Add your content here. Sometimes, you need `INLINE_CODE()`, to mention function names and such.
|
|
|
|
{{{
|
|
ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length";
|
|
|
|
for (int i = 0; i < x.size(); ++i) {
|
|
EXPECT_EQ(x[i], y[i]) << "Vectors x and y differ at index " << i;
|
|
}
|
|
}}}
|
|
|
|
= Details, now `with fixed width font` =
|
|
|
|
Add your content here. Format your content with:
|
|
* Text in *bold* or _italic_
|
|
* Headings, paragraphs, and lists
|
|
* Automatic links to other wiki pages
|
|
* See if _`italic fixed width`_ works. |