blob: 6a32fe140e437364d72254e773e62a93371e0dac (
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
|
// Copyright (c) 2010 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.
#include "base/file_util.h"
#include "chrome/browser/first_run/first_run.h"
#include "testing/gtest/include/gtest/gtest.h"
class FirstRunTest : public testing::Test {
protected:
virtual void SetUp() {
FirstRun::GetFirstRunSentinelFilePath(&sentinel_path_);
}
FilePath sentinel_path_;
};
TEST_F(FirstRunTest, RemoveSentinel) {
EXPECT_TRUE(FirstRun::CreateSentinel());
EXPECT_TRUE(file_util::PathExists(sentinel_path_));
EXPECT_TRUE(FirstRun::RemoveSentinel());
EXPECT_FALSE(file_util::PathExists(sentinel_path_));
}
|