本文整理汇总了C++中StringStream::didSourceStart方法的典型用法代码示例。如果您正苦于以下问题:C++ StringStream::didSourceStart方法的具体用法?C++ StringStream::didSourceStart怎么用?C++ StringStream::didSourceStart使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringStream
的用法示例。
在下文中一共展示了StringStream::didSourceStart方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: scope
TEST_F(ReadableStreamTest, Start)
{
ScriptState::Scope scope(scriptState());
ExceptionState exceptionState(ExceptionState::ConstructionContext, "property", "interface", scriptState()->context()->Global(), isolate());
Checkpoint checkpoint;
{
InSequence s;
EXPECT_CALL(checkpoint, Call(0));
EXPECT_CALL(*m_underlyingSource, pullSource()).Times(1);
EXPECT_CALL(checkpoint, Call(1));
}
StringStream* stream = new StringStream(m_underlyingSource);
EXPECT_FALSE(exceptionState.hadException());
EXPECT_FALSE(stream->isStarted());
EXPECT_FALSE(stream->isDraining());
EXPECT_FALSE(stream->isPulling());
EXPECT_FALSE(stream->isDisturbed());
EXPECT_EQ(stream->stateInternal(), ReadableStream::Readable);
checkpoint.Call(0);
stream->didSourceStart();
checkpoint.Call(1);
EXPECT_TRUE(stream->isStarted());
EXPECT_FALSE(stream->isDraining());
EXPECT_TRUE(stream->isPulling());
EXPECT_EQ(stream->stateInternal(), ReadableStream::Readable);
// We need to call |error| in order to make
// ActiveDOMObject::hasPendingActivity return false.
stream->error(DOMException::create(AbortError, "done"));
}
示例2: construct
StringStream* construct()
{
Checkpoint checkpoint;
{
InSequence s;
EXPECT_CALL(checkpoint, Call(0));
EXPECT_CALL(*m_underlyingSource, pullSource()).Times(1);
EXPECT_CALL(checkpoint, Call(1));
}
StringStream* stream = new StringStream(m_underlyingSource, new PermissiveStrategy);
checkpoint.Call(0);
stream->didSourceStart();
checkpoint.Call(1);
return stream;
}