本文整理汇总了C++中FileHelper::DirName方法的典型用法代码示例。如果您正苦于以下问题:C++ FileHelper::DirName方法的具体用法?C++ FileHelper::DirName怎么用?C++ FileHelper::DirName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileHelper
的用法示例。
在下文中一共展示了FileHelper::DirName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: line
TEST(PPPConfigTest, NodeConfig) {
FileHelper files;
files.Mkdir("network");
const string line("@2 [email protected]");
files.CreateTempFile("network/address.net", line);
const string network_dir = files.DirName("network");
PPPConfig config(1, "mybbs", network_dir);
const PPPNodeConfig* node_config = config.node_config_for(2);
ASSERT_TRUE(node_config != nullptr);
EXPECT_EQ("[email protected]", node_config->email_address);
}
示例2: line
TEST_F(CalloutTest, NodeConfig) {
FileHelper files;
files.Mkdir("network");
const string line("@1 & \"foo\"");
files.CreateTempFile("network/callout.net", line);
const string network_dir = files.DirName("network");
Callout callout(network_dir);
const net_call_out_rec* con = callout.node_config_for(1);
ASSERT_TRUE(con != nullptr);
EXPECT_EQ(options_sendback, con->options);
EXPECT_STREQ("foo", con->password);
}