blob: f86fd082b03cf51693aa9d6b1a71c63c5259e922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Test file for the empty string clang tool.
#include <string>
// Tests for std::string declarations.
void TestDeclarations() { std::string a(""), b("abc"), c(""); }
// Tests for std::string allocated with new.
void TestNew() {
std::string* a = new std::string(""),
*b = new std::string("abc"),
*c = new std::string(""),
*d = new std::string();
}
// Tests for std::string construction in initializer lists.
class TestInitializers {
public:
TestInitializers() : a("") {}
TestInitializers(bool) : a(""), b("") {}
TestInitializers(double) : a(""), b("cat"), c() {}
private:
std::string a;
std::string b;
std::string c;
};
// Tests for temporary std::strings.
void TestTemporaries(const std::string& reference_argument,
const std::string value_argument) {
TestTemporaries("", "");
TestTemporaries(std::string(""), std::string(""));
}
|